home *** CD-ROM | disk | FTP | other *** search
/ Complete Guide to Dogs / Complete Guide to Dogs (1997)(SoftKey)[Mac-PC].iso / pc / dogguide (.txt) < prev    next >
UltraCard Stack  |  1997-05-17  |  4MB  |  18,603 lines

  1. hSCRP
  2. on closeStack
  3.   compact stack
  4.   pass closeStack
  5. end closeStack
  6. on openStack
  7.   global currentState, filePath, dataDir, dataFile, textExt, pictExt, movieExt
  8.   global movieFileType, pictFileType, textFileType
  9.   global dogDirPrefix, artDirPrefix, credDirPrefix, bookDirPrefix
  10.   global textDirSuffix, pictDirSuffix, capDirSuffix, thumbDirSuffix
  11.   global slideDirSuffix, movieDirSuffix, topDogsListSaver
  12.   global sizeWords, coatWords, barkWords, friendWords, indepWords
  13.   global trainWords, uTrainWords, exerWords, groomWords, profgWords, dockWords
  14.   global childwords, petWords, spaceWords, climateWords, serviceWords, jogWords
  15.   global uClimateWords, myBusy, busyMax, readOnly
  16.   global typesIDs, sizeIDs, coatIDs, careIDs, environIDs, childrenIDs, petsIDs
  17.   global interactIDs, userDominance1, userDominance2, userActivities, userCare
  18.   global matchNumbers
  19.   -- We need a screen of at least 256 colors
  20.   put the systemColors into temp
  21.   if temp = 2 or temp = 16 or temp = "gray" then
  22.     go card "No Color"
  23.   end if
  24.   put false into deepColors
  25.   if temp = "thousands" or temp = "millions" then 
  26.     put true into deepColors
  27.     if the platform is "Windows" then
  28.       go card "Exact Colors"
  29.     end if
  30.   end if
  31.   -- If QuickTime is not installed on this machine, we have to abort.
  32.   put the movieTypes into temp
  33.   if "QuickTime" is not in temp then
  34.     go card "No QuickTime" 
  35.   end if
  36.   -- We need a screen at least 640 x 480
  37.   put the screenRect into temp
  38.   if the third item of temp < 640 or the fourth item of temp < 480 then
  39.     go card "Screen too small"
  40.   end if
  41.   if the platform is "Macintosh" then
  42.     put "Dogs:TGD:" into filePath
  43.     put ":" into dirSep
  44.   else
  45.     GetBaseDirectory
  46.     put the result into filePath
  47.     put "\" into dirSep
  48.   end if
  49.   put "DATA" & dirSep into dataDir
  50.   put "DOG_" into dogDirPrefix
  51.   put "ART_" into artDirPrefix
  52.   put "CRED_" into credDirPrefix
  53.   put "BOOK_" into bookDirPrefix
  54.   put "TXT" & dirSep into textDirSuffix
  55.   put "CAP" & dirSep into capDirSuffix
  56.   put "SLD" & dirSep into slideDirSuffix
  57.   put "MOV" & dirSep into movieDirSuffix
  58.   if deepColors is true then
  59.     put "PIC" & dirSep into pictDirSuffix
  60.     put "THM" & dirSep into thumbDirSuffix
  61.     --import filePath & dataDir & "Splash.pic" into card bitmap id 35 of card id 51
  62.   else
  63.     put "PM8" & dirSep into pictDirSuffix
  64.     put "TM8" & dirSep into thumbDirSuffix
  65.     --import filePath & dataDir & "Splash.pm8" into card bitmap id 35 of card id 51
  66.   end if
  67.   put ".txt" into textExt
  68.   put ".pic" into pictExt
  69.   put ".mov" into movieExt
  70.   put "dogdata.bin" into dataFile
  71.   if the platform is "Macintosh" then
  72.     put "MooV" into movieFileType
  73.     put "PICT" into pictFileType
  74.     put "TEXT" into textFileType
  75.   else
  76.     put "MOV" into movieFileType
  77.     put "PIC" into pictFileType
  78.     put "TXT" into textFileType
  79.   end if
  80.   put "--,v. small,small,medium,large,v. large" into sizeWords
  81.   put "--,short,curly,wiry,medium,featherd,fluffy,med.long,long" into coatWords
  82.   put "--,v. little,average,baying,howling,a lot" into barkWords
  83.   put "--,very wary,wary,reserved,fairly fr.,very fr." into friendWords
  84.   put "--,v.depnd't,depend't,middling,independ.,v. indep." into indepWords
  85.   put "--,dif'cult,not easy,fairly easy,easy,very easy" into trainWords
  86.   put "--,none,manners,basic,basic,advanced" into uTrainWords
  87.   put "--,v. little,little,moderate,lots,vigorous" into exerWords
  88.   put "--,v. little,little,regular,extensive,daily" into groomWords
  89.   put "--,none,little,moderate,skilled,elaborate" into profgWords
  90.   put "--,ears,tail,ears&tail,none" into dockWords
  91.   put "none,not good,frm ppyhd,older,good,excellent" into childWords
  92.   put "none,not good,othr dogs,othr dogs,frm ppyhd,good" into petWords
  93.   put "--,no yard,small,average,large,acreage" into spaceWords
  94.   put "--,warm,cold,any" into climateWords
  95.   put "moderate,warm,cold,hot&cold" into uClimateWords
  96.   put "--,hearing,blind,service" into serviceWords
  97.   put "--,poor,fair,ok,good,v. good" into jogWords
  98.   put the cantmodify of this stack into readOnly
  99.   set the cardCaching to true
  100.   set the cardCacheCount to 20
  101.   -- We can't seem to rely on OMO to initialize.
  102.   put empty into currentState
  103.   put empty into typesIDs
  104.   put empty into sizeIDs
  105.   put empty into coatIDs
  106.   put empty into careIDs
  107.   put empty into interactIDs
  108.   put empty into userCare
  109.   put empty into userDominance1
  110.   put empty into userDominance2
  111.   put empty into environIDs
  112.   put empty into childrenIDs
  113.   put empty into petsIDs
  114.   put empty into userActivities
  115.   put empty into topDogsListSaver
  116.   put empty into matchNumbers
  117.   put 1010 into myBusy    -- Watch
  118.   put 8 into busyMax
  119.   -- Insurance so that we won't try to prepare it when we first open
  120.   -- the main background.
  121.   set the myVisible of bg movie "Little Movie" of bg "The Main Background" to false
  122.   set the myVisible of bg movie "Slide Show" of bg "The Main Background" to false
  123. end openStack
  124.   --------------------------------------
  125. on getAllTables
  126.   send getDogTable to card picklist "Dog List" of card "Main Card-1"
  127.   send getArtTable to card picklist "Article List" of card "Main Card-3"
  128.   send getIndexTable to card picklist "Index List" of card "Main Card-4"
  129.   send getBookTable to card picklist "Book List" of card "Main Card-5"
  130.   send getCreditsTable to card picklist "Credits List" of card "Main Card-6"
  131. end getAllTables
  132. on getDogTable
  133.   send getDogTable to card picklist "Dog List" of card "Main Card-1"
  134. end getDogTable
  135. on getArtTable
  136.   send getArtTable to card picklist "Article List" of card "Main Card-3"
  137. end getArtTable
  138. on getIndexTable
  139.   send getIndexTable to card picklist "Index List" of card "Main Card-4"
  140. end getIndexTable
  141. on getBookTable
  142.   send getBookTable to card picklist "Book List" of card "Main Card-5"
  143. end getBookTable
  144. on getCreditsTable
  145.   send getCreditsTable to card picklist "Credits List" of card "Main Card-6"
  146. end getCreditsTable
  147. --------------------------------------
  148. on getDogAttrs
  149.   global filePath, dataDir
  150.   global dogAttrs, numDogs
  151.   -- Read the attributes  of all the dogs.
  152.   put filePath & dataDir & "dogdata.bin" into dogData
  153.   open file dogData
  154.   repeat with numDogs=1 to 500
  155.   read from file dogData until return
  156.   if the result is not empty then exit repeat
  157.   put it after dogAttrs
  158.   --put numDogs
  159. end repeat
  160. close file dogData
  161. put numDogs - 1 into numDogs
  162. end getDogAttrs
  163. --------------------------------------
  164. function fileExists thePath, theName, theType
  165.   if the platform is "Windows" then    -- Hack
  166.     return true
  167.   else
  168.     put the list of files of type theType in thePath into temp
  169.   if theName is in temp then return true else return false
  170. end if
  171. end fileExists
  172. PFONT
  173. 1STONE SERIF
  174. 2STONE SANS
  175. 3STONE INFORMAL
  176. ACASLON BOLD
  177. ACASLON BOLDITALIC`
  178. ACASLON ITALIC
  179. ACASLON REGULAR
  180. ACASLON SEMIBOLD
  181. ACASLON SEMIBOLDITALIC
  182.     AGARAMOND
  183. AGARAMOND ITALIC
  184. AGARAMOND SEMIBOLD
  185. AGARAMOND SEMIBOLDITALIC
  186. AMERICAN HERITAGE
  187. AMERICAN HERITAGE A
  188. AMERICAN HERITAGE B
  189. AMERICANINDIAN
  190.     APPLEICON
  191. ARIAL
  192. ASHLEY
  193. ATHENS 
  194. AVANT GARDE
  195. B 1STONE SERIF BOLD
  196. B 2STONE SANS BOLDP
  197. B 3STONE INFORMAL BOLD
  198. B AVANT GARDE DEMI
  199. B BODONI BOLD
  200. B BOOKMAN DEMI`
  201. B COURIER BOLD
  202. B FRANKLIN GOTHIC DEMI`
  203. B FRUTIGER BOLD
  204. B FUTURA BOLD
  205. B GALLIARD BOLD
  206. B GARAMOND BOLD
  207. B GOUDY BOLD
  208. B HELVETICA BOLD
  209. B KORINNA BOLD
  210. B MELIOR BOLD
  211. B NEW CALEDONIA BOLD
  212. B OPTIMA BOLD
  213. B PALATINO BOLD
  214. B TIMES BOLD
  215. B UNIVERS 65 BOLD
  216. B VAG ROUNDED BOLD
  217. B WALBAUM BOLD
  218. BANNER 
  219. BASKERVILLE MT
  220. BASKERVILLE MT BD
  221. BASKERVILLE MT BD IT
  222. BASKERVILLE MT IT
  223. BELLEVUE
  224. BEMBO
  225. BEMBO BOLD`
  226. BEMBO BOLDITALIC
  227. BEMBO ITALIC
  228. BERKELEY
  229. BERNHARDMOD BD BT
  230. BERNHARDMOD BDIT BT
  231. BERNHARDMOD BT`
  232. BERNHARDMOD IT BTx`
  233. BERTHOLD SCRIPT REGULAR
  234. BI 1STONE SERIF BOLDITALIC3
  235. BI 2STONE SANS BOLDITALIC
  236. BI 3STONE INFORMAL BOLDITALICx`
  237. BI AVANT GARDE DEMIOBLIQUE
  238. BI BODONI BOLDITALIC
  239. BI BOOKMAN DEMIITALICx`
  240. BI COURIER BOLDOBLIQUE*
  241. BI FRANKLIN GOTHIC DEMIOBLIQUE`
  242. BI FRUTIGER BOLDITALIC
  243. BI GALLIARD BOLDITALIC
  244. BI GARAMOND BOLDITALIC
  245. BI GOUDY BOLDITALIC
  246. BI HELVETICA BOLDOBLIQUE
  247. BI KORINNA KURSIVBOLD
  248. BI MELIOR BOLDITALIC
  249. BI NEW CALEDONIA BOLDITALIC
  250. BI OPTIMA BOLDOBLIQUE
  251. BI PALATINO BOLDITALIC
  252. BI TIMES BOLDITALIC
  253. BI WALBAUM BOLDITALICx`
  254. BIFFO MT
  255. BL FRUTIGER BLACKfM
  256. BLADES 
  257. BLI FRUTIGER BLACKITALIC
  258. BLK NEW CALEDONIA BLACK
  259. BLK UNIVERS 75
  260. BLK VAG ROUNDED BLACK
  261. BLKI NEW CALEDONIA BLACKITALICy
  262. BLKO UNIVERS 75 BLACKOBLIQUE
  263.     BLUEPRINT
  264. BO FUTURA BOLDOBLIQUE
  265. BO UNIVERS 65 BOLDOBLIQUE
  266. BODONI
  267. BODONI BD BT
  268. BODONI BDIT BT`
  269.     BODONI BT
  270. BODONI IT BT
  271. BODONI MT CN BD
  272. BODONI MT UT BD
  273. BODONI MT UT BD IT 
  274. BOOKMAN
  275. BOOKMAN OLD STYLEx`
  276. BOOKMAN OLD STYLE BD
  277. BOOKMAN OLD STYLE BD IT
  278. BOOKMAN OLD STYLE ITM
  279. BORDEAUXBLACKM
  280. BORDEAUXHEAVYf
  281. BORDEAUXLIGHT
  282. BORDEAUXMEDIUM 
  283. BRAGGADOCIO MT
  284. BRUSH SCRIPT
  285.     BRUSHHAND
  286. BRUSHSCRIPT
  287. C FUTURA CONDENSED
  288. C HELVETICA CONDENSED
  289. C UNIVERS 57 CONDENSEDL
  290. CAIRO
  291. CANDY
  292. CARTAfe
  293. CASLON OPEN FACEf:f
  294. CASQUEOPENFACE
  295. CASTELLAR MT
  296.     CAVANAUGH
  297. CB FUTURA CONDENSEDBOLD
  298. CB HELVETICA CONDENSED BOLD
  299. CB UNIVERS 67 CONDENSEDBOLD
  300. CBI HELVETICA CONDENSED BOLDOBL
  301. CBO FUTURA CONDBOLDOBLIQUE`
  302. CBO UNIVERS 67 CONDBOLDOBL
  303. CELTIC 
  304. CHICAGO
  305. CI HELVETICA CONDENSED OBLIQUE
  306.     CITY BOLD
  307. CITY BOLD ITALIC
  308. CITY MEDIUM
  309. CITY MEDIUM ITALIC 
  310. CL FUTURA CONDENSEDLIGHT
  311. CL HELVETICA CONDENSED LIGHT
  312. CL UNIVERS 47 CONDENSEDLIGHT
  313.     CLARENDON
  314. CLB HELVETICA CONDENSED BLACKx`
  315. CLBI HELVETICA CONDENSED BLACKO
  316. CLEARFACE GOTHIC MT BD`
  317. CLI HELVETICA CONDENSED LIGHTOB
  318. CLO FUTURA CONDLIGHTOBLIQUE
  319. CLO UNIVERS 47 CONDLIGHTOBL
  320. CO FUTURA CONDENSEDOBLIQUE
  321. CO UNIVERS 57 CONDOBLIQUE
  322. CODETHIRTYNINE
  323. COMMERCIALPI BT
  324. COOKIE
  325. COPPERPLATE29AB
  326. COPPERPLATE31AB
  327. COPPERPLATE33BC
  328. CORNET`
  329. COURIER
  330. COURIER NEW
  331.     CUPERTINO
  332. CUPERTINO  
  333. CXB FUTURA CONDEXTRABOLD
  334. CXBO FUTURA CONDEXTRABOLDOBLIQU
  335. DEARTEACHER-NORMAL`
  336. DEEP BOX
  337. DETROIT
  338. DOBKIN-SCRIPT
  339. DRAGONWICK`
  340. ELLINGTON MT EX BDM
  341. EMPIRE
  342. ENGRAVERS MT
  343. ERASERDUST
  344.     ESPY SANS
  345. ESPY SANS BOLD`
  346. EWORLD TIGHT
  347. FETTE FRAKTUR
  348. FLOOR PLAN`
  349. FORMALSCRIPT
  350. FORTE MT
  351. FRANCAIS
  352. FRANKLINGOTHIC
  353. FREESTYLE SCRIPT
  354. FUTURA
  355. FUTURA BD BT
  356. FUTURA BDIT BT
  357. FUTURA BK BT
  358. FUTURA BKIT BT 
  359. FUTURA BOOK
  360. FUTURA MD BT
  361. FUTURA MDIT BT
  362. GALLIARD
  363. GARAMOND
  364. GENEVA`
  365. GENEVA
  366. GIBSON
  367. GILLSANS
  368. GILLSANS BOLD
  369. GILLSANS BOLDCONDENSED`
  370. GILLSANS BOLDITALIC
  371. GILLSANS CONDENSED`
  372. GILLSANS EXTRABOLD`
  373. GILLSANS ITALIC
  374. GILLSANS LIGHT
  375. GILLSANS LIGHTITALIC
  376. GILLSANS ULTRABOLD
  377. GILLSANS ULTRABOLDCONDENSED
  378. GOODCITYMODERN`
  379. GOUDY
  380. GOUDY SC
  381. GOUDY TEXT MT
  382. H AVENIR HEAVY
  383. H FRANKLIN GOTHIC HEAVY
  384. H FUTURA HEAVY
  385. H GOUDY HEAVYFACE
  386.     HAMMERFAT
  387. HAMMERTHINP
  388. HARTING
  389. HEADLINE MT BDz
  390.     HELVETICA
  391. HELVETICAINSERAT ROMAN`
  392. HI FRANKLIN GOTHIC HEAVYOBLIQUE
  393. HI GOUDY HEAVYFACEITALIC
  394. HO FUTURA HEAVYOBLIQUE
  395. HOBBYHEADLINE
  396.     HOLLYWOOD
  397. I 1STONE SERIF ITALIC
  398. I 2STONE SANS ITALIC
  399. I 3STONE INFORMAL ITALIC
  400. I AVANT GARDE BOOKOBLIQUE
  401. I BODONI ITALIC
  402. I BOOKMAN LIGHTITALIC
  403. I COURIER OBLIQUE
  404. I FRANKLIN GOTHIC BOOKOBLIQUEx`
  405. I FRUTIGER ITALICx`
  406. I GALLIARD ITALICx`
  407. I GARAMOND LIGHTITALIC
  408. I GOUDY ITALIC`
  409. I HELVETICA OBLIQUE
  410. I KORINNA KURSIVREGULAR
  411. I MELIOR ITALIC
  412. I NEW CALEDONIA ITALIC
  413. I OPTIMA OBLIQUE
  414. I PALATINO ITALIC
  415. I TIMES ITALIC`
  416. I WALBAUM ITALIC
  417. IMPRESS BT?
  418. INDUSTRIA INLINE
  419. INDUSTRIA INLINEA
  420. INDUSTRIA SOLID
  421. INDUSTRIA SOLIDA
  422. INFOCOM
  423. KEYCAPS
  424. KLANG MT
  425. KORINNA
  426. KRAMER`
  427. KUENST480 BD BT
  428. KUENST480 BDIT BT
  429. KUENST480 BLK BT?
  430. KUENST480 BT
  431. KUENST480 IT BT
  432. KUENSTLERSCRIPT BLACK
  433. KUENSTLERSCRIPT MEDIUM
  434. KUENSTLERSCRIPT TWOBOLD
  435. L FRUTIGER LIGHT
  436. L FUTURA LIGHT*
  437. L UNIVERS 45 LIGHT
  438. L VAG ROUNDED LIGHT
  439. LI FRUTIGER LIGHTITALIC
  440. LIFFO
  441. LILITH
  442. LILITH-HEAVY
  443. LINEAL
  444. LITHOS BLACK
  445. LITHOS BOLD
  446. LITHOS EXTRALIGHT
  447. LITHOS LIGHT*(
  448. LITHOS REGULAR
  449. LO FUTURA LIGHTOBLIQUE
  450. LO UNIVERS 45 LIGHTOBLIQUE`
  451. LONDON
  452. LOS ANGELES
  453. LSILOGO
  454. MACHINESCRIPT
  455. MADRONE
  456.     MANHATTAN
  457. MARKERFELTTHINP
  458. MARQUEE
  459. MARQUEEENGRAVED
  460. MATHMETEOR`
  461. MELIOR
  462. MERCURIUS BOLD SCRIPT MT
  463.     MIDDLETON
  464. MINIPICSLILEDIBLESo
  465. MINIPICSLILFOLKS
  466. MINIPICSLILSTUFF
  467.     MISHAWAKA
  468. MISHAWAKA BOLD
  469. MISTRAL
  470. MOBILE`
  471. MONACOP
  472. MONOLINE SCRIPT MTP
  473. MONOTYPE CORSIVA
  474. MONOTYPE SORTS`
  475. MOS EISLEY
  476. MT EXTRA
  477. N HELVETICA NARROW`
  478. NAUERTP
  479. NEW BEROLINA MT
  480. NEW CALEDONIA
  481. NEW CENTURY SCHLBK
  482. NEW YORKA
  483. O FUTURA BOOKOBLIQUE
  484. O FUTURA OBLIQUE
  485. O UNIVERS 55 OBLIQUE
  486. OCR-A
  487. OCR-AREGULAR
  488. OLD STYLE MT BD OU 
  489. OLDENGLISHP
  490. OPTIMA
  491. ORACLE 
  492.     OREGONWET
  493. P BODONI POSTER
  494. PALATINO
  495. PARK AVENUE
  496. PEPITA MT 
  497. PHOTINA MT UT BD
  498.     PIXIEFONTx`
  499. PLACARD MT BD CN x`
  500. PLAYBILL
  501. POPLAR 
  502. PRESENT
  503. PROGRAMMER'S MONACO
  504. PROVENCE B
  505. PROVENCE C`
  506. PSYCHEDELICSMOKE
  507.     QUICKTYPE
  508. QUICKTYPE CONDENSED
  509. QUICKTYPE MONOP
  510. QUICKTYPE PI
  511. R AVENIR ROMAN
  512. R FRUTIGER ROMAN
  513. R WALBAUM ROMAN
  514. RANSOMNOTE`
  515. RECHTMAN
  516. REGENCYSCRIPT
  517. REPORTER TWO
  518. REVERE
  519. REVUE
  520.     RIVERSIDEx`
  521. ROCKWELL BD CN
  522. ROCKWELL EX BD
  523. ROUNDERS
  524. RUSSELLSQUARE
  525. RUSSELLSQUARE OBLIQUE
  526. SAINTFRANCIS
  527. SAN FRANCISCO
  528. SANTA MONICA
  529. SB 1STONE SERIF SEMIBOLD
  530. SB 2STONE SANS SEMIBOLD
  531. SB 3STONE INFORMAL SEMIBOLD
  532. SB NEW CALEDONIA SEMIBOLDx`
  533. SBI 1STONE SERIF SEMIBDITAL
  534. SBI 2STONE SANS SEMIBDITAL`
  535. SBI 3STONE INFORMAL SEMBDITAL
  536. SBI NEW CALEDONIA SEMI BOLD ITA
  537. SCRIPT BOLD MT
  538. SHELLEY ALLEGRO SCRIPT
  539. SHELLEY ANDANTE SCRIPT
  540. SHELLEY VOLANTE SCRIPT`
  541. SILLYCONVALLEY
  542. SNOOTY`
  543.     STARBURST
  544. STEEL BRUSH
  545. STENCIL
  546. SYMBOL
  547. T VAG ROUNDED THIN
  548. TAXTYPE
  549. TAXTYPE MONO
  550. TAXTYPE PI`
  551. TAXTYPECONDENSED
  552.     TECHNICAL
  553. TEKTON
  554. TEKTON BOLD
  555. TEKTON PLUS REGULAR
  556. TIMES
  557. TIMES NEW ROMAN
  558. TORONTO
  559. TOYLAND1
  560. TOYLAND2
  561. TRIBECA
  562. UB FRUTIGER ULTRABLACK
  563. UECKER
  564. ULTRASHADOW
  565. UNCIAL
  566. UNIVERS 55 
  567. UNIVERSITY ROMAN
  568. UNIVERSITYROMAN
  569. UPPERWESTSIDE
  570. VARSITY REGULAR001.001
  571. VENICE
  572. VOYAGER
  573. VT100
  574. WESTERNSLANT
  575. WHITE SHADOW
  576. WILL-HARRIS
  577. WILLOW
  578.     WINGDINGSx`
  579. WOODTYPE ORNAMENTS 2G}
  580. XB FUTURA EXTRABOLD
  581. XB GOUDY EXTRABOLD
  582. XBO FUTURA EXTRABOLDOBLIQUE
  583. ZAPF CHANCERY
  584. ZAPF DINGBATS
  585. ZAPFHUMNST BD BT
  586. ZAPFHUMNST BDIT BT
  587. ZAPFHUMNST BT
  588. ZAPFHUMNST IT BT
  589. ZAPFHUMNST ULT BT
  590. ZAPFHUMNST ULTIT BT
  591. PIDMO
  592. hIDBK
  593. 2IDCD
  594. YTAIL
  595. CRDHmain card-1
  596. BKGDhelp box bkgnd
  597. IBKGDpuptest table bkgnd
  598. !CRDHdominance
  599. BKGDactivities bkgnd
  600. BKGDalert background
  601. BKGDhelp background
  602. BKGDmain background
  603.     BKGDplain background
  604. BKGDprinting bkgnd
  605. BKGDquestionnaire bkgnd
  606. BKGDsplash bkgnd
  607. "BKGDthe main background
  608. 8CRDHcomp table print
  609. *CRDHcomparison help
  610. CRDHdominance questions
  611. CRDHexact colors
  612. @CRDHexercise
  613. CRDHhelp card
  614. $CRDHmain card-5
  615. >CRDHno quicktime
  616. LCRDHpuptest3
  617. )CRDHsplash card
  618. 9CRDHmain card-2
  619. :CRDHmain card-3
  620. ;CRDHmain card-4
  621. =CRDHmain card-6
  622. CRDHmatch list print
  623. QCRDHmovie bar help
  624. KCRDHno color
  625. 2CRDHorder form
  626. ECRDHpopup 1
  627. CRDHpuptest print1
  628. &CRDHpuptest print2
  629. (CRDHpuptest1
  630. CRDHpuptest2
  631.  CRDHquestionnaire help
  632. GCRDHscrren too small
  633. 4CRDHselector check
  634. #CRDHthe dog
  635. CRDHthe environment
  636. CRDHtop dogs alert
  637. PCRDHwait card
  638. /CRDHyou and the dog
  639. =BKGD
  640.     CRDH
  641.  BKGD
  642. "CRDH
  643. #BKGD
  644. %CRDH
  645. &CRDH
  646. (CRDH
  647. *CRDH
  648. +CRDH
  649. ,BKGD
  650. -BKGD
  651. .CRDH
  652. /CRDH
  653. 5BKGD
  654. 6CRDH
  655. 7BKGD
  656. 8CRDH
  657. 9CRDH
  658. :CRDH
  659. ;CRDH
  660. <CRDH
  661. =CRDH
  662. 2CRDH
  663. 3CRDH
  664. 4CRDH
  665. DCRDH
  666. ECRDH
  667. FBKGD
  668. HCRDH
  669. CCRDH
  670. KCRDH
  671. GCRDH
  672. JBKGD
  673. MCRDH
  674. PCRDH
  675. @CRDH
  676. Questionnaire bkgndbkgd
  677. Quit upEXTI
  678. ddata
  679. bbbbb
  680. DDWIWI
  681. fffffV
  682. .INFO
  683. Search DownEXTI
  684. ddata
  685. """Mooo
  686. """Mooo
  687. """Mooo
  688. """Mooo
  689. <<<<<
  690. %INFO
  691.     Search UpEXTI
  692. ddata
  693. bbbbb
  694. bbbbb
  695. bbbbb
  696. bbbbb
  697. bbbbb
  698. bbbbbbb
  699. bbbbbbb
  700. bbbbb
  701. bbbbb
  702. bbbbbbbbbb
  703. +SSfM55
  704. Start the SearchSCRP
  705. on mouseUp
  706.   global filePath, dataDir, dataFile, userSize, userCoat, userBark
  707.   global userTypes, userCare, userEnvirons, userFriendly, userActivities
  708.   global userDominance1, userDominance2, userNovice
  709.   global matchNumbers, currentState, currentMode, topDogsListSaver, myBusy
  710.   show bg bitmap "Search Up"
  711.   hide bg bitmap "Search Down"
  712.   if userCare is empty and the short id of this card is not 30 then
  713.     popUp card id 64 as dialog
  714.     set cursor to myBusy
  715.     lock screen
  716.     go card id 30
  717.     unlock screen with visual effect iris open in 30 ticks
  718.   else if userDominance1 is empty and the short id of this card is not 36 then
  719.     popUp card id 64 as dialog
  720.     set cursor to myBusy
  721.     lock screen
  722.     go card id 36
  723.     unlock screen with visual effect iris open in 30 ticks
  724.   else if userEnvirons is empty and the short id of this card is not 29 then
  725.     popUp card id 64 as dialog
  726.     set cursor to myBusy
  727.     lock screen
  728.     go card id 29
  729.     unlock screen with visual effect iris open in 30 ticks
  730.   else if userActivities is empty and the short id of this card is not 31 then
  731.     popUp card id 64 as dialog
  732.     set cursor to myBusy
  733.     lock screen
  734.     go card id 31
  735.     unlock screen with visual effect iris open in 30 ticks
  736.   else
  737.     set cursor to myBusy
  738.     put empty into topDogsListSaver
  739.     lock screen
  740.     go card "Wait Card"
  741.     unlock screen with visual effect scroll down in 30 ticks
  742.     set cursor to myBusy + 1
  743.     -- In this particular case, we don't want to do the "openCard" script
  744.     -- when we go to the "Top Dogs" screen, because we'll be changing everything
  745.     -- once the new matches are found anyway.  So lock the messages to prevent
  746.     -- the openCard message from being sent.
  747.     -- 12/18/95 - There seems to be a bug in the lockmessages; when this is
  748.     -- done, the openCard message never again gets sent to the Top Dogs card.
  749.     -- So I'm taking it out.
  750.     lock screen
  751.     set cursor to myBusy + 2
  752.     --set the lockmessages to true
  753.     go card "Main Card-2"
  754.     --set the lockmessages to false
  755.     set cursor to myBusy + 3
  756.     if currentState is not 2 then send StateChange && 2 to this background
  757.     set cursor to myBusy + 4
  758.     -- Be sure to call the XCMD *after* we've changed cards, otherwise the
  759.     -- answers on the current card won't be set correctly.
  760.     put filePath & dataDir & dataFile into fName
  761.     set cursor to myBusy + 5
  762.     DoTheRankings  fName, userTypes, userSize, userCoat, userBark, userCare, 
  763. userNovice, userDominance1, userDominance2, 
  764. userFriendly, userEnvirons, userActivities
  765.     put the result into matchNumbers
  766.     set cursor to myBusy + 6
  767.     send newMatches to card picklist "Match List"
  768.     set cursor to myBusy + 7
  769.     unlock screen with visual effect wipe right in 30 ticks
  770.   end if
  771.   set cursor to Browse
  772. end mouseUp
  773. ----------------------------
  774. on mouseDown
  775.   show bg bitmap "Search Down"
  776.   hide bg bitmap "Search Up"
  777.   repeat until the mouse is up
  778.     if the mouseloc is within the rectangle of me then
  779.       show bg bitmap "Search Down"
  780.       hide bg bitmap "Search Up"
  781.     else
  782.       show bg bitmap "Search Up"
  783.       hide bg bitmap "Search Down"
  784.     end if
  785.   end repeat
  786. end mouseDown
  787. TTAIL
  788. 0INFO
  789.     More downEXTI
  790. ddata
  791. """Mooo
  792. """Mooo
  793. """Mooo
  794. """Mooo
  795. """Mooo
  796. """Mooo
  797. /INFO
  798. More upEXTI
  799. ddata
  800. bbbbb
  801. bbbbb
  802. bbbbbbb
  803. bbbbbbbbb
  804. bbbbb
  805. xxxbbbb
  806. bbbbbbb
  807. SSff55
  808. MORESCRP
  809. on mouseUp
  810.   global myBusy
  811.   show bg bitmap "More Up"
  812.   hide bg bitmap "More Down"
  813.   set cursor to myBusy
  814.   lock screen
  815.   go next card
  816.   unlock screen with visual effect iris open in 40 ticks
  817.   set cursor to Browse
  818. end mouseUp
  819. on mouseDown
  820.   show bg bitmap "More Down"
  821.   hide bg bitmap "More Up"
  822.   repeat until the mouse is up
  823.     if the mouseloc is within the rectangle of me then
  824.       show bg bitmap "More Down"
  825.       hide bg bitmap "More Up"
  826.     else
  827.       show bg bitmap "More Up"
  828.       hide bg bitmap "More Down"
  829.     end if
  830.   end repeat
  831. end mouseDown
  832. TTAIL
  833. #INFO
  834. Home UpEXTI
  835. ddata
  836. bbbbb
  837. bbbbb
  838. bbbbbb
  839. bbbbbb
  840. bbbbbb
  841. YYXYYYXYY
  842. WYYYYYYYYWYYYWYYYWYYY
  843. 01001
  844. -INFO
  845.     Home DownEXTI
  846. ddata
  847. """Mooo
  848. """Mooo
  849. YYXYYYXYY
  850. """Mooo
  851. WYYYYYYYYWYYYWYYYWYYY
  852. 01001
  853. """MMM
  854. MMMMMMM
  855. Return to MainSCRP
  856. on mouseUp
  857.   global readOnly, currentState, myBusy
  858.   show bg bitmap "Home Up"
  859.   hide bg bitmap "Home Down"
  860.   set cursor to myBusy
  861.   lock screen
  862.   if currentState is empty or currentState < 1 or currentState > 6 then
  863.     put 1 into currentState
  864.   end if
  865.   go card "Main Card-" & currentState
  866.   if readOnly then send restoreMode to this background
  867.   unlock screen with visual effect wipe right in 30 ticks
  868.   set cursor to Browse
  869. end mouseUp
  870. on mouseDown
  871.   show bg bitmap "Home Down"
  872.   hide bg bitmap "Home Up"
  873.   repeat until the mouse is up
  874.     if the mouseloc is within the rectangle of me then
  875.       show bg bitmap "Home Down"
  876.       hide bg bitmap "Home Up"
  877.     else
  878.       show bg bitmap "Home Up"
  879.       hide bg bitmap "Home Down"
  880.     end if
  881.   end repeat
  882. end mouseDown
  883. TTAIL
  884. ,INFO
  885.     Help DownEXTI
  886. ddata
  887. """Mooo
  888. """Mooo
  889. """Mooo
  890. MMMMMMMMMMM
  891. *INFO
  892. Help UpEXTI
  893. ddata
  894. bbbbb
  895. bbbbb
  896. bbbbbbbbb
  897. xxxbb
  898. +INFO
  899. HelpSCRP
  900. on mouseUp
  901.   global myBusy
  902.   set cursor to myBusy
  903.   show bg bitmap "Help Up"
  904.   hide bg bitmap "Help Down"
  905.   lock screen
  906.   push this card
  907.   go card "Questionnaire Help"
  908.   unlock screen with visual effect scroll down in 30 ticks
  909.   set cursor to Browse
  910. end mouseUp
  911. on mouseDown
  912.   show bg bitmap "Help Down"
  913.   hide bg bitmap "Help Up"
  914.   repeat until the mouse is up
  915.     if the mouseloc is within the rectangle of me then
  916.       show bg bitmap "Help Down"
  917.       hide bg bitmap "Help Up"
  918.     else
  919.       show bg bitmap "Help Up"
  920.       hide bg bitmap "Help Down"
  921.     end if
  922.   end repeat
  923. end mouseDown
  924. TTAIL
  925. 'INFO
  926.     Quit DownEXTI
  927. ddata
  928. """Mooo
  929. """Mooo
  930. """Mooo
  931. DDWIWI
  932. You and the DogSCRP
  933. on mouseUp
  934.   global myBusy
  935.   if the id of this card is not "card id 30" then
  936.     set cursor to myBusy
  937.     lock screen
  938.     go card id 30
  939.     unlock screen with visual effect iris open in 30 ticks
  940.   set cursor to Browse
  941.   end if
  942. end mouseUp
  943. TTAIL
  944. The Dog's EnvironmentSCRP
  945. on mouseUp
  946.   global myBusy
  947.   if the id of this card is not "card id 29" then
  948.     set cursor to myBusy
  949.     lock screen
  950.     go card id 29
  951.     unlock screen with visual effect iris open in 30 ticks
  952.   set cursor to Browse
  953.   end if
  954. end mouseUp
  955. TTAIL
  956. The Dog's TalentsSCRP
  957. on mouseUp
  958.   global myBusy
  959.   if the id of this card is not "card id 31" then
  960.     set cursor to myBusy
  961.     lock screen
  962.     go card id 31
  963.     unlock screen with visual effect iris open in 30 ticks
  964.   set cursor to Browse
  965.   end if
  966. end mouseUp
  967. TTAIL
  968.     DominanceSCRP
  969. on mouseUp
  970.   global myBusy
  971.   if the id of this card is not "card id 36" then
  972.     set cursor to myBusy
  973.     lock screen
  974.     go card id 36
  975.     unlock screen with visual effect iris open in 30 ticks
  976.   set cursor to Browse
  977.   end if
  978. end mouseUp
  979. TTAIL
  980. The DogSCRP
  981. on mouseUp
  982.   global myBusy
  983.   if the id of this card is not "card id 6" then
  984.     set cursor to myBusy
  985.     lock screen
  986.     go card id 6
  987.     unlock screen with visual effect iris open in 30 ticks
  988.   set cursor to Browse
  989.   end if
  990. end mouseUp
  991. TTAIL
  992. QuitSCRP
  993. on mouseUp
  994.   set cursor to watch
  995.   show bg bitmap id 29  -- up
  996.   hide bg bitmap id 39   -- down
  997.   send quit to stack
  998. end mouseUp
  999. on mouseDown
  1000.   show bg bitmap id 39 -- down
  1001.   hide bg bitmap id 29   -- up
  1002.   repeat until the mouse is up
  1003.     if the mouseloc is within the rectangle of me then
  1004.       show bg bitmap id 39 -- down
  1005.       hide bg bitmap id 29   -- up
  1006.     else
  1007.       show bg bitmap id 29  -- up
  1008.       hide bg bitmap id 39   -- down
  1009.     end if
  1010.   end repeat
  1011. end mouseDown
  1012. TTAIL
  1013. 00000
  1014. 00000
  1015. 0,000
  1016. 0,0000
  1017. 00000
  1018. 0000000
  1019. ,00000000
  1020. 0,000
  1021. 00000
  1022. 00,00
  1023. 00000,
  1024. 0,,00
  1025. 000000
  1026. 000,0
  1027. 0,000
  1028. ,0000
  1029. 00000
  1030. ,0000
  1031. 000,0
  1032. ,000000
  1033. 00000
  1034. 0000,00,
  1035. 00000
  1036. 00000
  1037. 00000
  1038. ,0000
  1039. 0000000
  1040. 0,000
  1041. 000000
  1042. 000000
  1043. 000000
  1044. 00000
  1045. ******
  1046. 00000
  1047. 0000000
  1048. 00000
  1049. A000q
  1050. 0000000
  1051. 000000
  1052. 00000
  1053. 00000
  1054. 00000
  1055. 00000
  1056. 000000
  1057. 0,000
  1058. 0,0000000
  1059. 0000000
  1060. 00000
  1061. 000000
  1062. 00000
  1063. 00000000
  1064. 00000
  1065. 000000
  1066. ,0000
  1067. 000000
  1068. ,0000
  1069. 0000000
  1070. 00000
  1071. 00000
  1072. 00000
  1073. 0000000
  1074. ,000,
  1075. 00000
  1076. 00000
  1077. 00000
  1078. 00000
  1079. ,0000000
  1080. 0000000
  1081. 0,000000
  1082. 00000
  1083. 00000
  1084. 00000
  1085. 0,000
  1086. ,0000,
  1087. ,00,,
  1088. 0000000000
  1089. 00000
  1090. 000000
  1091. ?**4?
  1092. 000000000
  1093. 000,0
  1094. 000000
  1095. 00000
  1096. 00000
  1097. 00,000,0000
  1098. 0,000
  1099. 0000,0
  1100. 000,0
  1101. 000000
  1102. 00000
  1103. 00000
  1104. 000000
  1105. 000000,
  1106. 7*4*7
  1107. 4**4*
  1108. 4*44*
  1109. ?4!**?
  1110. 0GA0GG
  1111. 0v0G0
  1112. _6qqqa0q0
  1113. qrG60
  1114. ??;;4
  1115. 0  wr
  1116. rFr0G
  1117. 55GGr1rwrvBB5r0BwB
  1118. BAB05
  1119. rw55q6
  1120. arB0Q
  1121. B5rA55
  1122. q5Grq5
  1123. rqBab0 Q 
  1124. ??;;??;
  1125. ???????
  1126. The EnvironmentSCRP
  1127. on openCard
  1128.   global readOnly, environIDs, childrenIDs, petsIDs
  1129.   enable bkgnd button id 26    -- "More"
  1130.   show bg bitmap "More Up"
  1131.   if readOnly then
  1132.     if environIDs is not empty then
  1133.       repeat with idx = 1 to the number of items in environIDs
  1134.         send mouseUp to card button id (item idx of environIDs)
  1135.       end repeat
  1136.     end if
  1137.     if childrenIDs is not empty then
  1138.       unhilite card button id 5
  1139.       unhilite card button id 4
  1140.       unhilite card button id 46
  1141.       repeat with idx = 1 to the number of items in childrenIDs
  1142.         hilite card button id (item idx of childrenIDs)
  1143.       end repeat
  1144.     end if
  1145.     if petsIDs is not empty then
  1146.       unhilite card button id 10
  1147.       unhilite card button id 11
  1148.       unhilite card button id 49
  1149.       repeat with idx = 1 to the number of items in petsIDs
  1150.         hilite card button id (item idx of petsIDs)
  1151.       end repeat
  1152.     end if
  1153.   end if
  1154.   pass openCard
  1155. end openCard
  1156. ------------------------------
  1157. on closeCard
  1158.   global userEnvirons, environIDs, childrenIDs, petsIDs
  1159.   -- Children - We check for older children first so that if the user has small 
  1160.   -- children that will override.  Elderly persons are treated as older children.
  1161.   put 0 into char 1 of userEnvirons
  1162.   put empty into childrenIDs
  1163.   put 1 into idx
  1164.   if hilite of card button id 5 is true then 
  1165.     put 3 into char 1 of userEnvirons
  1166.     put 5 into item idx of childrenIDs
  1167.     add 1 to idx
  1168.   end if
  1169.   if hilite of card button id 46 is true then 
  1170.     put 3 into char 1 of userEnvirons
  1171.     put 46 into item idx of childrenIDs
  1172.     add 1 to idx
  1173.   end if
  1174.   if hilite of card button id 4 is true then
  1175.     put 5 into char 1 of userEnvirons
  1176.     put 4 into item idx of childrenIDs
  1177.     add 1 to idx
  1178.   end if
  1179.   -- Other Pets - Again, check for dogs first so that non-canines will override.
  1180.   put 0 into char 2 of userEnvirons
  1181.   put empty into petsIDs
  1182.   put 1 into idx
  1183.   if hilite of card button id 10 is true then 
  1184.     put 3 into char 2 of userEnvirons
  1185.     put 10 into item idx of petsIDs
  1186.     add 1 to idx
  1187.   end if
  1188.   if hilite of card button id 11 is true then
  1189.     put 5 into char 2 of userEnvirons
  1190.     put 11 into item idx of petsIDs
  1191.     add 1 to idx
  1192.   end if
  1193.   if hilite of card button id 49 is true then 
  1194.     put 5 into char 2 of userEnvirons
  1195.     put 49 into item idx of petsIDs
  1196.     add 1 to idx
  1197.   end if
  1198.   put item 2 of field id 23 into char 3 of userEnvirons    -- Space
  1199.   put item 1 of field id 23 into item 1 of environIDs
  1200.   put item 2 of field id 30 into char 4 of userEnvirons    -- Climate
  1201.   put item 1 of field id 23 into item 2 of environIDs
  1202.   pass closeCard
  1203. end closeCard
  1204. 6INFO
  1205. shape id 54TAIL
  1206. 5INFO
  1207. shape id 53TAIL
  1208. 4INFO
  1209. shape id 52TAIL
  1210. 3INFO
  1211. shape id 51TAIL
  1212. Peopledata
  1213. 4,5TAIL
  1214. Small childrenPROP
  1215.     childprop
  1216. 5TAIL
  1217. Older childrenPROP
  1218.     childprop
  1219. 1TAIL
  1220. Other Petsdata
  1221. 9,0TAIL
  1222. Other dogsPROP
  1223.     childprop
  1224. 5TAIL
  1225. CatsPROP
  1226.     childprop
  1227. 1TAIL
  1228. field id 22data
  1229. The dog will be living with
  1230. (or will have as regular visitors):TAIL
  1231. Outdoor Spacedata
  1232. 25,1TAIL
  1233. field id 24data
  1234. Where the dog will be living:TAIL
  1235. No outdoor yardSCRP
  1236. on mouseUp
  1237.   if the hilite of me is false then
  1238.     put item 1 of field id 23 into buttonRef
  1239.     set the hilite of button id buttonRef to false
  1240.     set the hilite of me to true
  1241.     put (the id of me) & ",1" into card field id 23
  1242.   end if
  1243. end mouseUp
  1244.     childprop
  1245. 0TAIL
  1246. Small outdoor yardSCRP
  1247. on mouseUp
  1248.   if the hilite of me is false then
  1249.     put item 1 of field id 23 into buttonRef
  1250.     set the hilite of button id buttonRef to false
  1251.     set the hilite of me to true
  1252.     put (the id of me) & ",2" into card field id 23
  1253.   end if
  1254. end mouseUp
  1255.     childprop
  1256. 0TAIL
  1257. Average-size yardSCRP
  1258. on mouseUp
  1259.   if the hilite of me is false then
  1260.     put item 1 of field id 23 into buttonRef
  1261.     set the hilite of button id buttonRef to false
  1262.     set the hilite of me to true
  1263.     put (the id of me) & ",3" into card field id 23
  1264.   end if
  1265. end mouseUp
  1266.     childprop
  1267. 0TAIL
  1268. Large yardSCRP
  1269. on mouseUp
  1270.   if the hilite of me is false then
  1271.     put item 1 of field id 23 into buttonRef
  1272.     set the hilite of button id buttonRef to false
  1273.     set the hilite of me to true
  1274.     put (the id of me) & ",4" into card field id 23
  1275.   end if
  1276. end mouseUp
  1277.     childprop
  1278. 0TAIL
  1279. AcreageSCRP
  1280. on mouseUp
  1281.   if the hilite of me is false then
  1282.     put item 1 of field id 23 into buttonRef
  1283.     set the hilite of button id buttonRef to false
  1284.     set the hilite of me to true
  1285.     put (the id of me) & ",5" into card field id 23
  1286.   end if
  1287. end mouseUp
  1288.     childprop
  1289. 0TAIL
  1290. Climatedata
  1291. 33,0TAIL
  1292.  INFO
  1293. Usually cool to very coldSCRP
  1294. on mouseUp
  1295.   if the hilite of me is false then
  1296.     put item 1 of field id 30 into buttonRef
  1297.     set the hilite of button id buttonRef to false
  1298.     set the hilite of me to true
  1299.     put (the id of me) & ",2" into card field id 30
  1300.   end if
  1301. end mouseUp
  1302.     childprop
  1303. 0TAIL
  1304. !INFO
  1305. Moderate (rarely cold or hot)SCRP
  1306. on mouseUp
  1307.   if the hilite of me is false then
  1308.     put item 1 of field id 30 into buttonRef
  1309.     set the hilite of button id buttonRef to false
  1310.     set the hilite of me to true
  1311.     put (the id of me) & ",0" into card field id 30
  1312.   end if
  1313. end mouseUp
  1314.     childprop
  1315. 0TAIL
  1316. (INFO
  1317. ?SCRP
  1318. on mouseUp
  1319.   set cursor to watch
  1320.   popUp card id 34 as dialog
  1321. end mouseUp
  1322. *INFO
  1323. Usually warm to very hotSCRP
  1324. on mouseUp
  1325.   if the hilite of me is false then
  1326.     put item 1 of field id 30 into buttonRef
  1327.     set the hilite of button id buttonRef to false
  1328.     set the hilite of me to true
  1329.     put (the id of me) & ",1" into card field id 30
  1330.   end if
  1331. end mouseUp
  1332.     childprop
  1333. 0TAIL
  1334. .INFO
  1335. Elderly personsPROP
  1336.     childprop
  1337. 1TAIL
  1338. /INFO
  1339. Check any that apply:TAIL
  1340. 0INFO
  1341. Check any that apply:TAIL
  1342. 1INFO
  1343. Other non-caninesPROP
  1344.     childprop
  1345. 1TAIL
  1346. 2INFO
  1347. Cold winters & warm summersSCRP
  1348. on mouseUp
  1349.   if the hilite of me is false then
  1350.     put item 1 of field id 30 into buttonRef
  1351.     set the hilite of button id buttonRef to false
  1352.     set the hilite of me to true
  1353.     put (the id of me) & ",3" into card field id 30
  1354.   end if
  1355. end mouseUp
  1356.     childprop
  1357. 0TAIL
  1358. MbbMMMM
  1359. MbbMMMM
  1360. MMMMMMM
  1361. MMMMMM
  1362. MMMMMM
  1363. MMMMMMM
  1364. bMbMMM
  1365. MbMbMM
  1366. bMbMMM
  1367. MMbMbM
  1368. MMM/MMbMbM
  1369. MMbMbM
  1370. MMMbM
  1371. MbMbM
  1372. MbMbM
  1373. MbMbM
  1374. MbMbM
  1375. MMMb/
  1376. bMMMMb/
  1377. MMMb/
  1378. MMMMMb/
  1379. MbMMbMb
  1380. MMMb/
  1381. MMMb/
  1382. MbMMbMb
  1383. MMMb/
  1384. bMMMMb/
  1385. MMMb/
  1386. MbMMbMb
  1387. MMMb/
  1388. MMMMb/
  1389. 00000
  1390. 00000
  1391. 00000
  1392. ,00,0
  1393. 00000
  1394. 00000
  1395. 00000
  1396. 00000
  1397. 00000,0
  1398. 0000,
  1399. 000,0
  1400. 000000
  1401. 00000
  1402. 000000
  1403. 0,0000
  1404. 00000
  1405. 00000
  1406. 00000
  1407. 00000
  1408. 00000
  1409. Help box bkgndbkgd
  1410.     INFO
  1411. OK DownEXTI
  1412. ddata
  1413. """Mooo
  1414. [ZWWW
  1415. """Mooo
  1416. WO555
  1417. ZZZFW
  1418. """Mooo
  1419. WGGGXWP
  1420. HHKKT
  1421. H5555
  1422. HHH*54
  1423. OK UpEXTI
  1424. ddata
  1425. bbbbbbb
  1426. [ZWWW
  1427. WO555
  1428. ZZZFW
  1429. WGGGXWP
  1430. HHKKT
  1431. H5555
  1432. HHH*54
  1433. Return to MainSCRP
  1434. on mouseUp
  1435.   show bg bitmap "OK Up"
  1436.   hide bg bitmap "OK Down"
  1437.   set cursor to watch
  1438.   dismiss
  1439. end mouseUp
  1440. on mouseDown
  1441.   show bg bitmap "OK Down"
  1442.   hide bg bitmap "OK Up"
  1443.   repeat until the mouse is up
  1444.     if the mouseloc is within the rectangle of me then
  1445.       show bg bitmap "OK Down"
  1446.       hide bg bitmap "OK Up"
  1447.     else
  1448.       show bg bitmap "OK Up"
  1449.       hide bg bitmap "OK Down"
  1450.     end if
  1451.   end repeat
  1452. end mouseDown
  1453. TTAIL
  1454. field id 3EXTI
  1455. TTAIL
  1456. field id 5EXTI
  1457. TTAIL
  1458. "TAIL
  1459.     INFO
  1460. Main BackgroundSCRP
  1461. --------------------------------------
  1462. on openCard
  1463.   send maybeShowYourself to bg movie "Little Movie"
  1464.   send maybeShowYourself to bg movie "Slide Show"
  1465.   pass openCard
  1466. end openCard
  1467. --------------------------------------
  1468. on closeCard
  1469.   send stopYourself to bg movie "Little Movie"
  1470.   send stopYourself to bg movie "Slide Show"
  1471.   pass closeCard
  1472. end closeCard
  1473. --------------------------------------
  1474. on stateChange newState
  1475.   -- newState=1 for the Dog List
  1476.   -- newState=2 for the Ranking List
  1477.   -- newState=3 for the Article List
  1478.   -- newState=4 for the Index
  1479.   -- newState=5 for the Book List
  1480.   global currentState, currentMode
  1481.   set cursor to watch
  1482.   lock screen
  1483.   -- Mode 3 (the comparison table) is only valid on the one card, so if we're in that
  1484.   -- mode and we're leaving, we need to switch to text mode first.
  1485.   if currentMode=3 then
  1486.     send mouseUp to bg button id 18    -- "Text"
  1487.   end if
  1488.   if currentState=5 then
  1489.     -- We're coming out of state 5, so we need to reset the currentMode
  1490.     if hilite of bg  button id 18 is true then    -- "Text"
  1491.       put 1 into currentMode
  1492.     else
  1493.       put 2 into currentMode
  1494.     end if
  1495.   end if
  1496.   go card "Main Card-" & newState
  1497.   put newState into currentState
  1498.   put empty into bg field "Dog Caption"
  1499.   put empty into bg movie "Little Movie"
  1500.   if newState is not 5 then put empty into card bitmap "Little Picture"
  1501.   -- the above 'if' goes away when the bitmap goes back to the background.
  1502.   put empty into bg field "Dog Info"
  1503.   put empty into bg movie "Slide Show"
  1504.   if newState is not 5 then put empty into card bitmap "Big Picture"
  1505.   if newState=5 then
  1506.     send modeChange && 5 to me
  1507.     hide bg button id 16    -- "Find Top Dogs"
  1508.     hide bg  button id 17   -- "Print"
  1509.   else
  1510.     show bg button id 16
  1511.     show bg  button id 17
  1512.     send showStuff to me
  1513.   end if  
  1514.   unlock screen with visual effect iris open very fast
  1515. end stateChange
  1516. --------------------------------------
  1517. on modeChange newMode
  1518.   -- newMode=1 for text mode
  1519.   -- newMode=2 for picture mode
  1520.   -- newMode=3 for comparison table mode
  1521.   -- newMode=5 for the Book List
  1522.   global currentMode, littleGraphic, bigGraphic
  1523.   lock screen
  1524.   if currentMode=2 then                -- We're coming from picture mode.
  1525.     hide bg field "Dog Caption"
  1526.     if newMode is not 5 then hide card bitmap "Big Picture"
  1527.     send hideYourself to bg movie "Slide Show"
  1528.   else 
  1529.     if newMode is not 5 then hide card bitmap "Little Picture"
  1530.     send hideYourself to bg movie "Little Movie"
  1531.     if currentMode=1 then            -- We're coming from text mode.
  1532.       hide bg field "Dog Info"
  1533.     else if currentMode=3 then    -- We're coming from comparison mode.
  1534.       hide card datasheet "Comparison Table"
  1535.     end if
  1536.   end if
  1537.   put newMode into currentMode
  1538.   if newMode is not 5 then send showStuff to me
  1539.   unlock screen with visual effect iris open very fast
  1540. end modeChange
  1541. --------------------------------------
  1542. on showNewDog
  1543.   set cursor to watch
  1544.   lock screen
  1545.   put empty into card bitmap "Little Picture"
  1546.   put empty into bg movie "Little Movie"
  1547.   put empty into bg field "Dog Caption"
  1548.   put empty into card bitmap "Big Picture"
  1549.   put empty into bg movie "Slide Show"
  1550.   put empty into bg field "Dog Info"
  1551.   send showStuff to me
  1552.   unlock screen with visual effect iris open very fast
  1553. end showNewDog
  1554.  --------------------------------------
  1555. on showStuff
  1556.   global currentDirFrom, currentMode, littleGraphic, bigGraphic
  1557.   if currentDirFrom = 1 then
  1558.     set name of bg button id 18 to "Description"
  1559.   else
  1560.     if littleGraphic = "V" then
  1561.       set name of bg button id 18 to "Movie & Text"
  1562.     else
  1563.       set name of bg button id 18 to "Text"
  1564.     end if
  1565.   end if
  1566.   enable bg button id 21    -- "Picture "
  1567.   if bigGraphic = "P" then
  1568.     set name of bg button id 21 to "Picture"
  1569.   else if bigGraphic = "S" then
  1570.     set name of bg button id 21 to "Slide Show"
  1571.   else
  1572.     -- There's no big picture or slide show, so let's make sure we're
  1573.     -- in text mode and then disable the Picture button.
  1574.     send mouseUp to bg button id 18    -- "Text"
  1575.     set name of bg button id 21 to "Picture"
  1576.     disable bg button id 21    -- "Picture "
  1577.   end if
  1578.   if currentMode = 2 then                                    -- Picture mode
  1579.     disable bg  button id 17    -- "Print"
  1580.     send showYourself to bg field "Dog Caption"
  1581.     if bigGraphic = "P" then
  1582.       send hideYourself to bg movie "Slide Show"
  1583.       send showYourself to card bitmap "Big Picture"
  1584.     else if bigGraphic = "S" then
  1585.       hide card bitmap "Big Picture"
  1586.       send showYourself to bg movie "Slide Show"
  1587.     end if
  1588.   else                                                              -- Text or Comparison mode
  1589.     -- This won't be necessary when this can go back to being a background bitmap,
  1590.     -- but for now, since it's on the card, we need to make sure it's hidden in text mode.
  1591.     hide card bitmap "Big Picture"
  1592.       
  1593.     enable bg  button id 17    -- "Print"
  1594.     if currentMode=1 then  -- Text Mode
  1595.       send showYourself to bg field "Dog Info"
  1596.     else                              -- Comparison mode
  1597.       send showYourself to card datasheet "Comparison Table"
  1598.     end if
  1599.     if littleGraphic = "V" then
  1600.       hide card bitmap "Little Picture"
  1601.       send showYourself to bg movie "Little Movie"
  1602.     else if littleGraphic = "L" then
  1603.       send hideYourself to bg movie "Little Movie"
  1604.       send showYourself to card bitmap "Little Picture"
  1605.     end if
  1606.   end if
  1607. end showStuff
  1608. on hypertext whatWord
  1609.   --put offset of whatWord in card picklist "Index List" of card "Main Card-4" into wOff
  1610.   put card picklist "Index List" of card "Main Card-4" into theList
  1611.   repeat with wRow=1 to the number of lines in theList
  1612.     put line wRow of theList into theLine
  1613.     put offset(whatWord, theLine) into wOff
  1614.     if wOff > 0 then exit repeat
  1615.   end repeat
  1616.   if wOff = 0 then
  1617.     beep
  1618.   else
  1619.     set cursor to watch
  1620.     lock screen
  1621.     go card "Main Card-4"
  1622.     unhilite card picklist "Index List"
  1623.     hilite row wRow of card picklist "Index List"
  1624.     send mouseUp && wRow to card picklist "Index List"
  1625.     unlock screen with visual effect iris open very fast
  1626.   end if
  1627. end hypertext
  1628. shape id 23EXTI
  1629. on +RGr
  1630. shape id 19EXTI
  1631. QuitSCRP
  1632. on mouseUp
  1633.   set cursor to watch
  1634.   send quit to stack
  1635. end mouseUp
  1636. pTAIL
  1637. on mouseUp+BUT
  1638. HelpEXTI
  1639.  TAIL
  1640. very fast
  1641. end+BUT
  1642. Find Top DogsSCRP
  1643. on mouseUp
  1644.   set cursor to watch
  1645.   lock screen
  1646.   go card id 6
  1647.   unlock screen with visual effect scroll down very fast
  1648. end mouseUp
  1649. hTAIL
  1650. uranc+BUT
  1651. PrintSCRP
  1652. on mouseUp
  1653.   global currentDirFrom, currentMode, filePath, artTxtDir, dogTxtDir, curFileDog, textExt
  1654.   -- Pathological insurance.
  1655.   send stopYourself to card movie "Little Movie"
  1656.   send stopYourself to card movie "Slide Show"
  1657.   if the visible of card datasheet "Comparison Table" is true then
  1658.     set cursor to watch
  1659.     put card datasheet "Comparison Table" of this card into 
  1660.      card datasheet "Comparison Table" of card "Comp Table print"
  1661.     push this card
  1662.     lock screen
  1663.     print card "Comp Table print"
  1664.     pop card
  1665.   else
  1666.     -- We don't need to check for all possible states here, because the button is
  1667.     -- only enable when there is text displayed.
  1668.     if currentDirFrom = 3 then
  1669.       put filePath & artTxtDir & curFileDog & textExt into dogFile
  1670.     else    
  1671.       put filePath & dogTxtDir & curFileDog & textExt into dogFile
  1672.     end if
  1673.     PrintAFile  dogFile
  1674.   end if
  1675. end mouseUp
  1676. iTAIL
  1677. ow bg shape id +BUT
  1678. DescriptionSCRP
  1679. on mouseUp
  1680.   global currentMode
  1681.   if hilite of me is false then
  1682.     set cursor to watch
  1683.     hilite me
  1684.     show bg shape id 19
  1685.     if currentMode=2 then
  1686.       unhilite bg button id 21    -- "Picture"
  1687.       hide bg shape id 23
  1688.     else if currentMode=3 then
  1689.       unhilite card button id 3    -- "Comparisons"
  1690.       hide card shape id 4
  1691.     end if
  1692.     send modeChange && 1 to this background
  1693.   end if
  1694. end mouseUp
  1695.  id 23
  1696.   +BUT
  1697. PictureSCRP
  1698. on mouseUp
  1699.   global currentMode
  1700.   if hilite of me is false then
  1701.     set cursor to watch
  1702.     hilite me
  1703.     show bg shape id 23
  1704.     if currentMode=1 then
  1705.       unhilite bg button id 18    -- "Text"
  1706.       hide bg shape id 19
  1707.     else
  1708.       unhilite card button id 3    -- "Comparisons"
  1709.       hide card shape id 4
  1710.     end if
  1711.     send modeChange && 2 to this background
  1712.   end if
  1713. end mouseUp
  1714.   if+TXT
  1715. Dog InfoSCRP
  1716. on showYourself
  1717.   global filePath, curFileDog, dogTxtdir, artTxtdir, textExt, currentDirFrom
  1718.   show me
  1719.   if me is empty then
  1720.     set cursor to watch
  1721.     set the multifont of me to false      -- Kludge to get around an OMO bug
  1722.     set the multifont of me to true
  1723.     put empty into bolders
  1724.     put empty into italicers
  1725.     put empty into headers
  1726.     if currentDirFrom = 3 then
  1727.       put filePath & artTxtDir & curFileDog & textExt into dogFile
  1728.     else
  1729.       put filePath & dogTxtDir & curFileDog & textExt into dogFile
  1730.     end if
  1731.     if char 1 of dogFile = "." then
  1732.       put "wierdness:" && dogFile
  1733.       exit showYourself
  1734.     end if
  1735.     open file dogFile
  1736.     put 0 into idx
  1737.     repeat forever
  1738.       add 1 to idx
  1739.       --put idx
  1740.       read from file dogFile until return
  1741.       if the result is not empty then exit repeat
  1742.       put it into lyne
  1743.       
  1744.       put offset("<b>", lyne) into boffset
  1745.       if boffset > 0 then
  1746.         delete char boffset to boffset+2 of lyne
  1747.         put offset("</>", lyne) into eoffset
  1748.         delete char eoffset to eoffset+2 of lyne
  1749.         put boffset & "," & eoffset-1 & "," & idx & return after bolders
  1750.       end if
  1751.       
  1752.       put offset("<I>", lyne) into boffset
  1753.       if boffset > 0 then
  1754.         delete char boffset to boffset+2 of lyne
  1755.         put offset("</I>", lyne) into eoffset
  1756.         delete char eoffset to eoffset+3 of lyne
  1757.         put boffset & "," & eoffset-1 & "," & idx & return after italicers
  1758.       end if
  1759.       
  1760.       put offset("<C>", lyne) into boffset
  1761.       if boffset > 0 then
  1762.         delete char boffset to boffset+2 of lyne
  1763.         put offset("</C>", lyne) into eoffset
  1764.         delete char eoffset to eoffset+3 of lyne
  1765.         put boffset & "," & eoffset-1 & "," & idx & return after headers
  1766.       end if
  1767.       
  1768.       put lyne after holder
  1769.     end repeat
  1770.     if holder is empty then
  1771.       put "holder is empty, dogFile is" && dogFile & return into me
  1772.     else
  1773.       put holder into me
  1774.     end if
  1775.     set the textSize of me to 12  --10
  1776.     set the textFont of me to Times
  1777.     close file dogFile
  1778.     repeat with idx=1 to the number of lines in bolders
  1779.       put line idx of bolders into tempLine
  1780.       set the textStyle of char (item 1 of tempLine) to 
  1781.       (item 2 of tempLine) of line (item 3 of tempLine) of me to bold
  1782.       set the textColor of char (item 1 of tempLine) to 
  1783.       (item 2 of tempLine) of line (item 3 of tempLine) of me to 201  --230
  1784.     end repeat
  1785.     repeat with idx=1 to the number of lines in italicers
  1786.       put line idx of italicers into tempLine
  1787.       set the textStyle of char (item 1 of tempLine) to 
  1788.       (item 2 of tempLine) of line (item 3 of tempLine) of me to underline
  1789.     end repeat
  1790.     repeat with idx=1 to the number of lines in headers
  1791.       put line idx of headers into tempLine
  1792.       set the textColor of char (item 1 of tempLine) to 
  1793.       (item 2 of tempLine) of line (item 3 of tempLine) of me to 143  --218
  1794.     end repeat
  1795.   end if
  1796. end showYourself
  1797. gdata
  1798. activity to sh+BUT
  1799. Top DogsSCRP
  1800. on mouseUp
  1801.   if the short name of this card is not "Main Card-2" then
  1802.     lock screen
  1803.     send stateChange && 2 to this background
  1804.     unlock screen with visual effect iris open very fast
  1805.   end if
  1806. end mouseUp
  1807. bTAIL
  1808. ectly and qu+BUT
  1809. ArticlesSCRP
  1810. on mouseUp
  1811.   if the short name of this card is not "Main Card-3" then
  1812.     lock screen
  1813.     send stateChange && 3 to this background
  1814.     unlock screen with visual effect iris open very fast
  1815.   end if
  1816. end mouseUp
  1817.  TAIL
  1818. order to qua+BUT
  1819. IndexSCRP
  1820. on mouseUp
  1821.   if the short name of this card is not "Main Card-4" then
  1822.     lock screen
  1823.     send stateChange && 4 to this background
  1824.     unlock screen with visual effect iris open very fast
  1825.   end if
  1826. end mouseUp
  1827.  TAIL
  1828. gether to produ+BUT
  1829. BreedsSCRP
  1830. on mouseUp
  1831.   if the short name of this card is not "Main Card-1" then
  1832.     lock screen
  1833.     send stateChange && 1 to this background
  1834.     unlock screen with visual effect iris open very fast
  1835.   end if
  1836. end mouseUp
  1837. eTAIL
  1838. es in the Unit+TXT
  1839. Dog CaptionSCRP
  1840. on showYourself
  1841.   global currentDirFrom, filePath, curFileDog, dogCapDir, artCapDir, textExt
  1842.   show me
  1843.   if me is empty then  
  1844.     if currentDirFrom = 3 then
  1845.       put filePath & artCapDir & curFileDog & textExt into dogFile
  1846.     else
  1847.       put filePath & dogCapDir  & curFileDog & textExt into dogFile
  1848.     end if
  1849.     open file dogFile
  1850.     repeat with idx=1 to 500
  1851.       --put idx
  1852.       read from file dogFile until return
  1853.       if the result is not empty then exit repeat
  1854.       put it into line idx of me
  1855.     end repeat
  1856.     close file dogFile 
  1857.   end if
  1858. end showYourself
  1859. edata
  1860. Ch. Wright's Paladin of Jaybar. Owned and photographed by by Theresa Wright, Wright's American Eskimos. TAIL
  1861.  For their sMOOV
  1862.  INFO
  1863. -Aristillus:Telemark:ARTICLES.MOV:dog_agil.mov
  1864. Little MovieSCRP
  1865. on showYourself dontPrepare
  1866.   global filePath, curFileDog, artMovDir, movieExt
  1867.   show me
  1868.   put filePath & artMovDir & curFileDog & movieExt into mFile
  1869.   set the moviefile of me to mFile
  1870.   -- For some reason, when this is called from another card (like from the stack
  1871.   -- script when the Splash card is up), the prepare fails.  Fortunately, in that case,
  1872.   -- we'll be doing the prepare when maybeShowYourself gets called on card open.
  1873.   if dontPrepare is empty then
  1874.     prepare me
  1875.     seek me to 0
  1876.   end if
  1877. end showYourself
  1878. on maybeShowYourself
  1879.   if the visible of me is true then 
  1880.     prepare me
  1881.     seek me to 0
  1882.   end if
  1883. end maybeShowYourself
  1884. on hideYourself
  1885.   hide me
  1886.   if the isPlaying of me is true then stop me
  1887. end hideYourself
  1888. on stopYourself
  1889.   if the isPlaying of me is true then 
  1890.     stop me
  1891.     seek me to 0
  1892.   end if
  1893. end stopYourself
  1894.  TAIL
  1895. oin an AgilMOOV
  1896. !INFO
  1897. )Aristillus:Telemark:DOGS.SLD:alasmala.mov.mov
  1898. Slide ShowSCRP
  1899. on showYourself dontPrepare
  1900.   global currentDirFrom, filePath, curFileDog, artSldDir, dogSldDir, movieExt
  1901.   show me
  1902.   if currentDirFrom = 3 then
  1903.     put filePath & artSldDir & curFileDog & movieExt into mFile
  1904.   else
  1905.     put filePath & dogSldDir & curFileDog & movieExt into mFile
  1906.   end if
  1907.   set the moviefile of me to mFile
  1908.   if dontPrepare is empty then
  1909.     prepare me
  1910.     seek me to 0
  1911.   end if
  1912. end showYourself
  1913. on maybeShowYourself
  1914.   if the visible of me is true then 
  1915.     prepare me
  1916.     seek me to 0
  1917.   end if
  1918. end maybeShowYourself
  1919. on hideYourself
  1920.   hide me
  1921.   if the isPlaying of me is true then stop me
  1922. end hideYourself
  1923. on stopYourself
  1924.   if the isPlaying of me is true then 
  1925.     stop me
  1926.     seek me to 0
  1927.   end if
  1928. end stopYourself
  1929.  TAIL
  1930.  year old).  +BUT
  1931. #INFO
  1932.     Book ListSCRP
  1933. on mouseUp
  1934.   if the short name of this card is not "Main Card-5" then
  1935.     lock screen
  1936.     send stateChange && 5 to this background
  1937.     go card "Main Card-5"
  1938.     unlock screen with visual effect iris open very fast
  1939.   end if
  1940. end mouseUp
  1941. STAIL
  1942. LBMAP
  1943. MNMt    
  1944. NMtMNNtN
  1945. tMNNtMNNf
  1946. MNNNNNNN
  1947. NtNNNtNN
  1948. tMtMNMtM:
  1949. MNMNMNMN
  1950. MNNtMNNt
  1951. MNNNN
  1952. :NNNt
  1953. NtNtNtNt
  1954. tNNN:
  1955. :MtMt
  1956. lNtNtNtN
  1957. NtNtNtMt
  1958. NNNNNNtN
  1959. NMNNNNNN
  1960. NtMNN
  1961. NNNtNN
  1962. tNNN:
  1963. :NtMN
  1964. :NNNN
  1965. NtNtNtMN
  1966. NNtNNNtN
  1967. lMtNtMtNt
  1968. NNNNNNNN
  1969. NtMNN
  1970. NtNtNtNt
  1971. tMNN:
  1972. :MNNN
  1973. lNtNtNtNt
  1974. NtNtN
  1975. NNNNNNtN
  1976. MtNtMtNt
  1977. NNNNNNNN
  1978. NNMNN
  1979. tNtNtNtNl
  1980. :NtNNNtNN
  1981. NtNtMNN
  1982. tMNNNMNN:
  1983. MtMNMtMN
  1984. NNNMNNNM
  1985. MNNNMNMN
  1986. NtMtN
  1987. NNtNNNtN:
  1988. MtNtMtN
  1989. NNNNNNNN:
  1990. NtNNN
  1991. :NtNtN
  1992. HTAIL
  1993. Alert backgroundBMAP
  1994. gTAIL
  1995. The DogSCRP
  1996. on openCard
  1997.   global userTypes, userSize, userCoat, userBark
  1998.   global typesIDs, sizeIDs, coatIDs, readOnly
  1999.   enable bkgnd button id 26    -- "More"
  2000.   show bg bitmap "More Up"
  2001.   if readOnly then
  2002.     -- Size of Dog
  2003.     unhilite card button id 6
  2004.     send mouseUp to card button id 6  -- No preference; Unhilites all the other buttons.
  2005.     -- Also note that a mouseUp does NOT hilite; that happens on a mouseDown.
  2006.     if sizeIDs is empty then
  2007.       hilite card button id 6
  2008.     else
  2009.       repeat with idx=1 to the number of items in sizeIDs
  2010.         hilite card button id (item idx of sizeIDs)
  2011.       end repeat
  2012.     end if
  2013.     -- Type of Dog
  2014.     unhilite card button id 129
  2015.     send mouseUp to card button id 129
  2016.     if typesIDs is empty then
  2017.       hilite card button id 129
  2018.     else
  2019.       repeat with idx=1 to the number of items in typesIDs
  2020.         hilite card button id (item idx of typesIDs)
  2021.         
  2022.       end repeat
  2023.     end if
  2024.     -- Coat Type
  2025.     unhilite card button id 18
  2026.     send mouseUp to card button id 18
  2027.     if coatIDs is empty then
  2028.       hilite card button id 18
  2029.     else
  2030.       repeat with idx=1 to the number of items in coatIDs
  2031.         hilite card button id (item idx of coatIDs)
  2032.         send mouseUp to card button id (item idx of coatIDs)
  2033.       end repeat
  2034.     end if
  2035.     if userBark = "Y" then
  2036.       send mouseUp to card button id 27
  2037.     else                          -- This includes userBark being empty.
  2038.       send mouseUp to card button id 29
  2039.     end if
  2040.   end if
  2041.   pass openCard
  2042. end openCard
  2043. -----------------------------------
  2044. on closeCard
  2045.   global userTypes, userSize, userCoat, userBark
  2046.   global typesIDs, sizeIDs, coatIDs
  2047.   ---- Type
  2048.   put empty into userTypes
  2049.   put empty into typesIDs
  2050.   put 1 into idx
  2051.   repeat with bidx=131 to 140
  2052.     if hilite of card button id bidx is true then 
  2053.       put NumToChar(bidx-131 + CharToNum("A")) after userTypes
  2054.       put bidx into item idx of typesIDs
  2055.       add 1 to idx
  2056.     end if
  2057.   end repeat  
  2058.   if hilite of card button id 142 is true then
  2059.     put "K" after userTypes
  2060.     put 142 into item idx of typesIDs
  2061.     add 1 to idx
  2062.   end if
  2063.   if userTypes is empty then put 0 into userTypes
  2064.   ---- Size
  2065.   put empty into userSize
  2066.   put empty into sizeIDs
  2067.   put 1 into idx
  2068.   if hilite of card button id 1 is true then 
  2069.     put 1 after userSize
  2070.     put 1 into item idx of sizeIDs
  2071.     add 1 to idx
  2072.   end if
  2073.   if hilite of card button id 2 is true then 
  2074.     put 2 after userSize
  2075.     put 2 into item idx of sizeIDs
  2076.     add 1 to idx
  2077.   end if
  2078.   if hilite of card button id 3 is true then 
  2079.     put 3 after userSize
  2080.     put 3 into item idx of sizeIDs
  2081.     add 1 to idx
  2082.   end if
  2083.   if hilite of card button id 4 is true then 
  2084.     put 4 after userSize
  2085.     put 4 into item idx of sizeIDs
  2086.     add 1 to idx
  2087.   end if
  2088.   if hilite of card button id 5 is true then 
  2089.     put 5 after userSize
  2090.     put 5 into item idx of sizeIDs
  2091.     add 1 to idx
  2092.   end if
  2093.   if userSize is empty then put 0 into userSize
  2094.   ---- Coat
  2095.   put empty into userCoat
  2096.   put empty into coatIDs
  2097.   put 1 into idx
  2098.   if hilite of card button id 19 is true then 
  2099.     put 1 after userCoat
  2100.     put 19 into item idx of coatIDs
  2101.     add 1 to idx
  2102.   end if
  2103.   if hilite of card button id 20 is true then
  2104.     put 2 after userCoat
  2105.     put 20 into item idx of coatIDs
  2106.     add 1 to idx
  2107.   end if
  2108.   if hilite of card button id 104 is true then 
  2109.     put 3 after userCoat
  2110.     put 104 into item idx of coatIDs
  2111.     add 1 to idx
  2112.   end if
  2113.   if hilite of card button id 21 is true then 
  2114.     put 4 after userCoat
  2115.     put 21 into item idx of coatIDs
  2116.     add 1 to idx
  2117.   end if
  2118.   if hilite of card button id 103 is true then 
  2119.     put 5 after userCoat
  2120.     put 103 into item idx of coatIDs
  2121.     add 1 to idx
  2122.   end if
  2123.   if hilite of card button id 102 is true then 
  2124.     put 6 after userCoat
  2125.     put 102 into item idx of coatIDs
  2126.     add 1 to idx
  2127.   end if
  2128.   if hilite of card button id 22 is true then 
  2129.     put 7 after userCoat
  2130.     put 22 into item idx of coatIDs
  2131.     add 1 to idx
  2132.   end if
  2133.   if hilite of card button id 23 is true then 
  2134.     put 8 after userCoat
  2135.     put 23 into item idx of coatIDs
  2136.     add 1 to idx
  2137.   end if
  2138.   if userCoat is empty then put 0 into userCoat
  2139.   ---- Barking
  2140.   if the hilite of card button id 27 is true then
  2141.     put "Y" into userBark
  2142.   else 
  2143.     put "N" into userBark
  2144.   end if
  2145.   pass closeCard
  2146. end closeCard
  2147. 2+RGr
  2148. shape id 151TAIL
  2149. shape id 155TAIL
  2150. shape id 150TAIL
  2151. shape id 154TAIL
  2152. shape id 149TAIL
  2153. shape id 153TAIL
  2154. shape id 152TAIL
  2155. shape id 148TAIL
  2156. sINFO
  2157. field id 115data
  2158. There are five pages to the questionnaire.  When you have answered all the questions, click the Start Search button to see a list of the best breeds for you.ADDD
  2159. Size of Dogdata
  2160. 3,3TAIL
  2161. Very smallSCRP
  2162. on mouseUp
  2163.   unhilite card button id 6
  2164. end mouseUp
  2165. sizeprop
  2166. 1TAIL
  2167. SmallSCRP
  2168. on mouseUp
  2169.   unhilite card button id 6
  2170. end mouseUp
  2171. sizeprop
  2172. 2TAIL
  2173. MediumSCRP
  2174. on mouseUp
  2175.   unhilite card button id 6
  2176. end mouseUp
  2177. sizeprop
  2178. 3TAIL
  2179. LargeSCRP
  2180. on mouseUp
  2181.   unhilite card button id 6
  2182. end mouseUp
  2183. sizeprop
  2184. 4TAIL
  2185. Very largeSCRP
  2186. on mouseUp
  2187.   unhilite card button id 6
  2188. end mouseUp
  2189. sizeprop
  2190. 5TAIL
  2191. No preferenceSCRP
  2192. on mouseUp
  2193.   unhilite card button id 1
  2194.   unhilite card button id 2
  2195.   unhilite card button id 3
  2196.   unhilite card button id 4
  2197.   unhilite card button id 5
  2198. end mouseUp
  2199. sizeprop
  2200. 0TAIL
  2201.     Coat Typedata
  2202. 21,4TAIL
  2203. No preferenceSCRP
  2204. on mouseUp
  2205.   unhilite card button id 19
  2206.   unhilite card button id 20
  2207.   unhilite card button id 104
  2208.   unhilite card button id 21
  2209.   unhilite card button id 103
  2210.   unhilite card button id 102
  2211.   unhilite card button id 22
  2212.   unhilite card button id 23
  2213. end mouseUp
  2214. sizeprop
  2215. 0TAIL
  2216. ShortSCRP
  2217. on mouseUp
  2218.   unhilite card button id 18
  2219. end mouseUp
  2220. sizeprop
  2221. 1TAIL
  2222. Curly coatSCRP
  2223. on mouseUp
  2224.   unhilite card button id 18
  2225. end mouseUp
  2226. sizeprop
  2227. 2TAIL
  2228. Medium lengthSCRP
  2229. on mouseUp
  2230.   unhilite card button id 18
  2231. end mouseUp
  2232. sizeprop
  2233. 3TAIL
  2234. Medium longSCRP
  2235. on mouseUp
  2236.   unhilite card button id 18
  2237. end mouseUp
  2238. sizeprop
  2239. 4TAIL
  2240. LongSCRP
  2241. on mouseUp
  2242.   unhilite card button id 18
  2243. end mouseUp
  2244. sizeprop
  2245. 5TAIL
  2246. Barkingdata
  2247. 27,1TAIL
  2248. YesSCRP
  2249. on mouseUp
  2250.   global userBark
  2251.   if the hilite of me is false then
  2252.     unhilite button id 29
  2253.     hilite me
  2254.     put "Y" into userBark
  2255.   end if
  2256. end mouseUp
  2257. sizeprop
  2258. 1TAIL
  2259. NoSCRP
  2260. on mouseUp
  2261.   global userBark
  2262.   if the hilite of me is false then
  2263.     unhilite  button id 27
  2264.     hilite me
  2265.     put "N" into userBark
  2266.   end if
  2267. end mouseUp
  2268. sizeprop
  2269. 3TAIL
  2270. _INFO
  2271. ?SCRP
  2272. on mouseUp
  2273.   set cursor to watch
  2274.   popUp card id 28 as dialog
  2275. end mouseUp
  2276. fINFO
  2277. Fluffy coatSCRP
  2278. on mouseUp
  2279.   unhilite card button id 18
  2280. end mouseUp
  2281. sizeprop
  2282. 3TAIL
  2283. gINFO
  2284. Feathered coatSCRP
  2285. on mouseUp
  2286.   unhilite card button id 18
  2287. end mouseUp
  2288. sizeprop
  2289. 3TAIL
  2290. hINFO
  2291.     Wiry coatSCRP
  2292. on mouseUp
  2293.   unhilite card button id 18
  2294. end mouseUp
  2295. sizeprop
  2296. 2TAIL
  2297. oINFO
  2298. Check all that apply:TAIL
  2299. pINFO
  2300. Check all that apply:TAIL
  2301. qINFO
  2302. ?SCRP
  2303. on mouseUp
  2304.   set cursor to watch
  2305.   popUp card id 41 as dialog
  2306. end mouseUp
  2307. tINFO
  2308. Is it important to you to have a dog that is generally quiet?TAIL
  2309. uINFO
  2310. ?SCRP
  2311. on mouseUp
  2312.   set cursor to watch
  2313.   popUp card id 42 as dialog
  2314. end mouseUp
  2315. Look of Dogdata
  2316. 21,4TAIL
  2317. Check all that apply:TAIL
  2318. No preferenceSCRP
  2319. on mouseUp
  2320.   repeat with idx=131 to 140
  2321.     unhilite card button id idx
  2322.   end repeat
  2323.   unhilite card button id 142
  2324. end mouseUp
  2325. sizeprop
  2326. 0TAIL
  2327. Mastiff, BulldogSCRP
  2328. on mouseUp
  2329.   unhilite card button id 129
  2330. end mouseUp
  2331. sizeprop
  2332. 1TAIL
  2333. Spitz, NordicSCRP
  2334. on mouseUp
  2335.   unhilite card button id 129
  2336. end mouseUp
  2337. sizeprop
  2338. 2TAIL
  2339. TerrierSCRP
  2340. on mouseUp
  2341.   unhilite card button id 129
  2342. end mouseUp
  2343. sizeprop
  2344. 2TAIL
  2345. Scent HoundSCRP
  2346. on mouseUp
  2347.   unhilite card button id 129
  2348. end mouseUp
  2349. sizeprop
  2350. 3TAIL
  2351. Setter, Retriever, PointerSCRP
  2352. on mouseUp
  2353.   unhilite card button id 129
  2354. end mouseUp
  2355. sizeprop
  2356. 3TAIL
  2357. Toy, MiniatureSCRP
  2358. on mouseUp
  2359.   unhilite card button id 129
  2360. end mouseUp
  2361. sizeprop
  2362. 3TAIL
  2363. SpanielSCRP
  2364. on mouseUp
  2365.   unhilite card button id 129
  2366. end mouseUp
  2367. sizeprop
  2368. 4TAIL
  2369. Herding DogSCRP
  2370. on mouseUp
  2371.   unhilite card button id 129
  2372. end mouseUp
  2373. sizeprop
  2374. 5TAIL
  2375. SighthoundSCRP
  2376. on mouseUp
  2377.   unhilite card button id 129
  2378. end mouseUp
  2379. sizeprop
  2380. 5TAIL
  2381. Mtn. Dog, Stock GuardSCRP
  2382. on mouseUp
  2383.   unhilite card button id 129
  2384. end mouseUp
  2385. sizeprop
  2386. 5TAIL
  2387. ?SCRP
  2388. on mouseUp
  2389.   set cursor to watch
  2390.   popUp card id 91 as dialog
  2391. end mouseUp
  2392. Poodle, BichonSCRP
  2393. on mouseUp
  2394.   unhilite card button id 129
  2395. end mouseUp
  2396. sizeprop
  2397. 5TAIL
  2398. MbbMMMM
  2399. MMbMMMM
  2400. MMbMMMM
  2401. 00000000
  2402. 0000000000
  2403. <^00000
  2404. MMMMMMM
  2405. MMMMMM
  2406. MMMMMMM
  2407. MbMbMM
  2408. bMbMbM
  2409. bMbMMM
  2410. MMbMbM
  2411. MMM/MMbMbM
  2412.     MMbM
  2413. MMbMbM
  2414. MMMbM
  2415. MMMMMM
  2416. bMbMbM
  2417. 00000
  2418. MbMbM
  2419. MbMbM
  2420. MbMbM
  2421. MbMbM
  2422. 000000
  2423. 0000x
  2424. 00000000
  2425. 00000+
  2426. <n000
  2427. MMMMMb/
  2428. MbMMbMb
  2429. MMMb/
  2430. MMMb/
  2431. MbMMbMb
  2432. MMMb/
  2433. bMMMMM
  2434. MMMb/
  2435. MMMb/
  2436. bMMMMb/
  2437. MMMb/
  2438. MbMMbMb
  2439. MMMb/
  2440. MMMMb/
  2441. 00000
  2442. 00000000
  2443. ,0000000
  2444. 00000
  2445. 0,000
  2446. 00000
  2447. 0000000
  2448. 000000
  2449. ,;0,0
  2450. 00000
  2451. 00000
  2452. 000000
  2453. 00,00
  2454. 000000
  2455. 00000
  2456. 0,0000
  2457. 00000
  2458. 00000
  2459. 000,0
  2460. popup 1bkgd
  2461.                                              HEIGHT                        WEIGHT
  2462.               Very Small:    10 inches and under    15 lbs and under
  2463.               Small:              9-15 inches                    15-35 lbs.
  2464.               Medium:         12-24 inches                   30-55 lbs.
  2465.               Large:             22-27 inches                   50-115 lbs.
  2466.               Very Large:    25 inches and up           110 lbs. and up
  2467. The size of a dog is figured as follows:TAIL
  2468. Activities BkgndBMAP
  2469. Refers to how the dog will respond to strangers who come into the dog's territory.
  2470. Very Wary:    Friendly with the family, but confrontational with strangers.
  2471. Reserved:     Friendly with the family, but cautious with strangers.
  2472. Friendly:        Likes most people (but may still be a good watchdog).ADDD
  2473. FriendlinessTAIL
  2474. You and the DogSCRP
  2475. on openCard
  2476.   global userNovice, careIDs, readOnly
  2477.   enable bkgnd button id 26    -- "More"
  2478.   show bg bitmap "More Up"
  2479.   if readOnly and (careIDs is not empty) then
  2480.     repeat with idx = 1 to min(5, the number of items in careIDs)
  2481.       -- The sixth item is independence, which is used on the Interaction card.
  2482.       if item idx of careIDs is not empty then
  2483.         send mouseUp to card button id (item idx of careIDs)
  2484.       end if
  2485.     end repeat
  2486.   if userNovice = "N" then hilite card button id 30 else unhilite card button id 30
  2487. end if
  2488. pass openCard
  2489. end openCard
  2490. on closeCard
  2491.   global userCare, userNovice, careIDs
  2492.   put item 2 of field id 8 into char 1 of userCare    -- Trainability
  2493.   put item 1 of field id 8 into item 1 of careIDs
  2494.   put item 2 of field id 20 into char 2 of userCare   -- Exercise
  2495.   put item 1 of field id 20 into item 2 of careIDs
  2496.   put item 2 of field id 2 into char 3 of userCare    -- Grooming
  2497.   put item 1 of field id 2 into item 3 of careIDs
  2498.   put item 2 of field id 13 into char 4 of userCare   -- Prof. grooming
  2499.   put item 1 of field id 13 into item 4 of careIDs
  2500.   put item 2 of field id 33 into char 5 of userCare   -- Docking
  2501.   put item 1 of field id 33 into item 5 of careIDs
  2502.   if (hilite of card button id 30) then 
  2503.     put "N" into userNovice
  2504.   else 
  2505.     put "Y" into userNovice
  2506.   endif
  2507.   pass closeCard
  2508. end closeCard
  2509. /+RGr
  2510. 3INFO
  2511. shape id 51TAIL
  2512. 2INFO
  2513. shape id 50TAIL
  2514. 4INFO
  2515. shape id 52TAIL
  2516. <INFO
  2517. shape id 60TAIL
  2518. 6INFO
  2519. shape id 54TAIL
  2520. ;INFO
  2521. shape id 59TAIL
  2522. 5INFO
  2523. shape id 53TAIL
  2524. :INFO
  2525. shape id 58TAIL
  2526. 9INFO
  2527. shape id 57TAIL
  2528. 8INFO
  2529. shape id 56TAIL
  2530. 7INFO
  2531. shape id 55TAIL
  2532. 1INFO
  2533. shape id 49TAIL
  2534. Whatever the dog needsSCRP
  2535. on mouseUp
  2536.   if the hilite of me is false then
  2537.     put item 1 of field id 2 into buttonRef
  2538.     set the hilite of button id buttonRef to false
  2539.     set the hilite of me to true
  2540.     put (the id of me) & ",0" into card field id 2
  2541.     end if
  2542. end mouseUp
  2543. sizeprop
  2544. 3TAIL
  2545. Groomingdata
  2546. 6,0TAIL
  2547. Once a week for a few minutesSCRP
  2548. on mouseUp
  2549.   if the hilite of me is false then
  2550.     put item 1 of field id 2 into buttonRef
  2551.     set the hilite of button id buttonRef to false
  2552.     set the hilite of me to true
  2553.     put (the id of me) & ",1" into card field id 2
  2554.   end if
  2555. end mouseUp
  2556. sizeprop
  2557. 0TAIL
  2558. &A few times a week, 10 mins. each timeSCRP
  2559. on mouseUp
  2560.   if the hilite of me is false then
  2561.     put item 1 of field id 2 into buttonRef
  2562.     set the hilite of button id buttonRef to false
  2563.     set the hilite of me to true
  2564.     put (the id of me) & ",1" into card field id 2
  2565.   end if
  2566. end mouseUp
  2567. sizeprop
  2568. 1TAIL
  2569.  Twice a week, 30 mins. each timeSCRP
  2570. on mouseUp
  2571.   if the hilite of me is false then
  2572.     put item 1 of field id 2 into buttonRef
  2573.     set the hilite of button id buttonRef to false
  2574.     set the hilite of me to true
  2575.     put (the id of me) & ",3" into card field id 2
  2576.     end if
  2577. end mouseUp
  2578. sizeprop
  2579. 2TAIL
  2580. Trainingdata
  2581. 9,1TAIL
  2582.     INFO
  2583. NoneSCRP
  2584. on mouseUp
  2585.   global userCare, careIDs
  2586.   if the hilite of me is false then
  2587.     put item 1 of field id 8 into buttonRef
  2588.     set the hilite of button id buttonRef to false
  2589.     set the hilite of me to true
  2590.     put (the id of me) & ",1" into card field id 8
  2591.   end if
  2592. end mouseUp
  2593. sizeprop
  2594. 0TAIL
  2595. Manners onlySCRP
  2596. on mouseUp
  2597.   global userCare, careIDs
  2598.   if the hilite of me is false then
  2599.     put item 1 of field id 8 into buttonRef
  2600.     set the hilite of button id buttonRef to false
  2601.     set the hilite of me to true
  2602.     put (the id of me) & ",2" into card field id 8
  2603.     end if
  2604. end mouseUp
  2605. sizeprop
  2606. 1TAIL
  2607. Basic obedienceSCRP
  2608. on mouseUp
  2609.   global userCare, careIDs
  2610.   if the hilite of me is false then
  2611.     put item 1 of field id 8 into buttonRef
  2612.     set the hilite of button id buttonRef to false
  2613.     set the hilite of me to true
  2614.     put (the id of me) & ",3" into card field id 8
  2615.     end if
  2616. end mouseUp
  2617. sizeprop
  2618. 2TAIL
  2619. Advanced obedienceSCRP
  2620. on mouseUp
  2621.   global userCare, careIDs
  2622.   if the hilite of me is false then
  2623.     put item 1 of field id 8 into buttonRef
  2624.     set the hilite of button id buttonRef to false
  2625.     set the hilite of me to true
  2626.     put (the id of me) & ",5" into card field id 8
  2627.     end if
  2628. end mouseUp
  2629. sizeprop
  2630. 3TAIL
  2631. Professional Groomingdata
  2632. 16,1TAIL
  2633. NoSCRP
  2634. on mouseUp
  2635.   if the hilite of me is false then
  2636.     put item 1 of field id 13 into buttonRef
  2637.     set the hilite of button id buttonRef to false
  2638.     set the hilite of me to true
  2639.     put (the id of me) & ",1" into card field id 13
  2640.     end if
  2641. end mouseUp
  2642. sizeprop
  2643. 1TAIL
  2644. Yes, once or twice a yearSCRP
  2645. on mouseUp
  2646.   if the hilite of me is false then
  2647.     put item 1 of field id 13 into buttonRef
  2648.     set the hilite of button id buttonRef to false
  2649.     set the hilite of me to true
  2650.     put (the id of me) & ",3" into card field id 13
  2651.     end if
  2652. end mouseUp
  2653. sizeprop
  2654. 2TAIL
  2655. Yes, every 3 months or moreSCRP
  2656. on mouseUp
  2657.   if the hilite of me is false then
  2658.     put item 1 of field id 13 into buttonRef
  2659.     set the hilite of button id buttonRef to false
  2660.     set the hilite of me to true
  2661.     put (the id of me) & ",5" into card field id 13
  2662.     end if
  2663. end mouseUp
  2664. sizeprop
  2665. 3TAIL
  2666. Exercisedata
  2667. 22,0TAIL
  2668. Whatever the dog needsSCRP
  2669. on mouseUp
  2670.   if the hilite of me is false then
  2671.     put item 1 of field id 20 into buttonRef
  2672.     set the hilite of button id buttonRef to false
  2673.     set the hilite of me to true
  2674.     put (the id of me) & ",0" into card field id 20
  2675.   end if
  2676. end mouseUp
  2677.     childprop
  2678. 0TAIL
  2679. 20-30 minutes a daySCRP
  2680. on mouseUp
  2681.   if the hilite of me is false then
  2682.     put item 1 of field id 20 into buttonRef
  2683.     set the hilite of button id buttonRef to false
  2684.     set the hilite of me to true
  2685.     put (the id of me) & ",3" into card field id 20
  2686.   end if
  2687. end mouseUp
  2688.     childprop
  2689. 0TAIL
  2690. More than an hour a daySCRP
  2691. on mouseUp
  2692.   if the hilite of me is false then
  2693.     put item 1 of field id 20 into buttonRef
  2694.     set the hilite of button id buttonRef to false
  2695.     set the hilite of me to true
  2696.     put (the id of me) & ",5" into card field id 20
  2697.   end if
  2698. end mouseUp
  2699.     childprop
  2700. 0TAIL
  2701. field id 26data
  2702. How much training do you plan to give your dog?TAIL
  2703. field id 27data
  2704. How much time would you be willing to spend grooming your dog?TAIL
  2705. field id 28data
  2706. Would you be willing to provide professional grooming for your dog?TAIL
  2707. field id 29data
  2708. How much time could you spend exercising your dog?TAIL
  2709. !INFO
  2710. Dockingdata
  2711. 42,0TAIL
  2712. "INFO
  2713. field id 34data
  2714. Would you accept a dog that requires docking or cropping?TAIL
  2715. #INFO
  2716. NoSCRP
  2717. on mouseUp
  2718.   if the hilite of me is false then
  2719.     put item 1 of field id 33 into buttonRef
  2720.     set the hilite of button id buttonRef to false
  2721.     set the hilite of me to true
  2722.     put (the id of me) & ",4" into card field id 33
  2723.     end if
  2724. end mouseUp
  2725. sizeprop
  2726. 1TAIL
  2727. $INFO
  2728. YesSCRP
  2729. on mouseUp
  2730.   if the hilite of me is false then
  2731.     put item 1 of field id 33 into buttonRef
  2732.     set the hilite of button id buttonRef to false
  2733.     set the hilite of me to true
  2734.     put (the id of me) & ",0" into card field id 33
  2735.     end if
  2736. end mouseUp
  2737. sizeprop
  2738. 2TAIL
  2739. &INFO
  2740. ?SCRP
  2741. on mouseUp
  2742.   set cursor to watch
  2743.   popUp card id 35 as dialog
  2744. end mouseUp
  2745. 'INFO
  2746. ?SCRP
  2747. on mouseUp
  2748.   set cursor to watch
  2749.   popUp card id 39 as dialog
  2750. end mouseUp
  2751. (INFO
  2752. ?SCRP
  2753. on mouseUp
  2754.   set cursor to watch
  2755.   popUp card id 40 as dialog
  2756. end mouseUp
  2757. )INFO
  2758. Less than 20 mins. a daySCRP
  2759. on mouseUp
  2760.   if the hilite of me is false then
  2761.     put item 1 of field id 20 into buttonRef
  2762.     set the hilite of button id buttonRef to false
  2763.     set the hilite of me to true
  2764.     put (the id of me) & ",1" into card field id 20
  2765.   end if
  2766. end mouseUp
  2767.     childprop
  2768. 0TAIL
  2769. *INFO
  2770. No PreferenceSCRP
  2771. on mouseUp
  2772.   if the hilite of me is false then
  2773.     put item 1 of field id 33 into buttonRef
  2774.     set the hilite of button id buttonRef to false
  2775.     set the hilite of me to true
  2776.     put (the id of me) & ",0" into card field id 33
  2777.     end if
  2778. end mouseUp
  2779. sizeprop
  2780. 2TAIL
  2781. field id 31data
  2782. Check here if you have ever trained a dog to be well-behaved.TAIL
  2783. -INFO
  2784. ?SCRP
  2785. on mouseUp
  2786.   set cursor to watch
  2787.   popUp card id 60 as dialog
  2788. end mouseUp
  2789. .INFO
  2790. ?SCRP
  2791. on mouseUp
  2792.   set cursor to watch
  2793.   popUp card id 61 as dialog
  2794. end mouseUp
  2795. Have you TrainedTAIL
  2796. MMbMMMM
  2797. MMbMMMM
  2798. MMMMMMM
  2799. MMMMMM
  2800. 0000,0
  2801. MMMMMMM
  2802. MMMMMM
  2803. MMMMMMM
  2804. bMbMMM
  2805. 00000
  2806. bMbMbM
  2807. bMbMMM
  2808. 00000
  2809. MMM/MMbMbM
  2810.     MMbM
  2811. MMbMbM
  2812. MMMbM
  2813. MMMMMM
  2814. 0,,002
  2815. bMbMbM
  2816. MbMbM
  2817. MbMbM
  2818. MbMbM
  2819. MbMbM
  2820. MMMb/
  2821. bMMMMb/
  2822. MMMb/
  2823. MMMb/
  2824. MbMMbMb
  2825. MMMb/
  2826. bMMMMM
  2827. MMMb/
  2828. MMMb/
  2829. bMMMMb/
  2830. MMMb/
  2831. MbMMbMb
  2832. MMMb/
  2833. MMMMb/
  2834. 00000
  2835. 00000
  2836. 00000
  2837. 00000
  2838. 00000
  2839. 00000
  2840. 00000,0
  2841. ,0000
  2842. ,00,,
  2843. 000000
  2844. 00000
  2845. 000000
  2846. 000000
  2847. 000000
  2848. 0000000
  2849. on openCard
  2850.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  2851.   put "Don't care" into sliderWord0
  2852.   put "Desired" into sliderWord1
  2853.   put "Important" into sliderWord2
  2854.   if userActivities is empty then
  2855.     send mouseUp to card button id 62
  2856.     repeat with idx=1 to 23
  2857.       put "N" into char idx of userActivities
  2858.     end repeat
  2859.   else
  2860.     send setASlider && char 1 of userActivities & ",118,98,104" to me
  2861.     send setASlider && char 2 of userActivities & ",68,67,69" to me
  2862.     send setASlider && char 3 of userActivities & ",73,71,72" to me
  2863.     send setASlider && char 4 of userActivities & ",85,74,79" to me
  2864.     send setASlider && char 5 of userActivities & ",86,75,80" to me
  2865.     send setASlider && char 6 of userActivities & ",87,76,81" to me
  2866.     send setASlider && char 7 of userActivities & ",88,77,82" to me
  2867.     send setASlider && char 8 of userActivities & ",89,78,83" to me
  2868.     send setASlider && char 23 of userActivities & ",90,92,91" to me
  2869.     send setASlider && char 9 of userActivities & ",113,93,99" to me
  2870.     send setASlider && char 10 of userActivities & ",114,94,100" to me
  2871.     send setASlider && char 12 of userActivities & ",115,95,101" to me
  2872.     send setASlider && char 13 of userActivities & ",116,96,102" to me
  2873.     send setASlider && char 14 of userActivities & ",117,97,103" to me
  2874.     send setASlider && char 15 of userActivities & ",126,106,119" to me
  2875.     send setASlider && char 17 of userActivities & ",127,107,120" to me
  2876.     send setASlider && char 18 of userActivities & ",129,109,122" to me
  2877.     send setASlider && char 19 of userActivities & ",128,108,121" to me
  2878.     send setASlider && char 20 of userActivities & ",130,110,123" to me
  2879.     send setASlider && char 21 of userActivities & ",131,111,124" to me
  2880.     send setASlider && char 22 of userActivities & ",132,112,125" to me
  2881.   end if
  2882.   disable bkgnd button id 26    -- "More"
  2883.   hide bg bitmap "More Up"
  2884.   pass openCard
  2885. end openCard
  2886.       
  2887. on setASlider which, buttonID, bitmapID, fieldID
  2888.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  2889.   put (the left of card button id buttonID)+4 into leftSide
  2890.   put (the right of card button id buttonID)-4 into rightSide
  2891.   if which="N" then
  2892.     put sliderWord0 into theWord
  2893.     put leftSide into ph
  2894.   else if which="Y" then
  2895.     put sliderWord1 into theWord
  2896.     put leftSide+22 into ph
  2897.   else
  2898.     put sliderWord2 into theWord
  2899.     put rightSide into ph
  2900.   end if
  2901.   put item 2 of (location of card bitmap id bitmapID) into pointerV
  2902.   set the location of card bitmap id bitmapID to ph, pointerV
  2903.   put theWord into card field id fieldID
  2904. end setASlider
  2905. Z+RGr
  2906. shape id 139TAIL
  2907. shape id 140TAIL
  2908. TINFO
  2909. button id 84SCRP
  2910. on mouseDown
  2911.   global userActivities
  2912.   put item 2 of (location of card bitmap id 74) into pointerV
  2913.   put (the left of me)+4 into leftSide
  2914.   put (the right of me)-4 into rightSide
  2915.   repeat while the mouse is down
  2916.     put mouseH() into mh
  2917.     if mh < leftSide then put leftSide into mh
  2918.     if mh > rightSide then put rightSide into mh
  2919.     set the location of card bitmap id 74 to mh, pointerV
  2920.     if mh < leftSide+12 then
  2921.       put "Don't care" into card field id 79
  2922.     else if mh > rightSide-12 then
  2923.       put "Important" into card field id 79
  2924.     else
  2925.       put "Desired" into card field id 79
  2926.     end if
  2927.   end repeat
  2928.   put item 1 of (location of card bitmap id 74) into sh
  2929.   if sh < leftSide+12 then
  2930.     put leftSide into ph
  2931.     put "N" into tempChar
  2932.   else if sh > rightSide-12 then
  2933.     put rightSide into ph
  2934.     put "I" into tempChar
  2935.   else
  2936.     put leftSide+22 into ph
  2937.     put "Y" into tempChar
  2938.   end if
  2939.   put tempChar into char 4 of userActivities
  2940.   set the location of card bitmap id 74 to ph, pointerV
  2941. end mouseDown
  2942. NINFO
  2943. bitmap id 78data
  2944. Slide the triangle pointers to indicate activities you plan to do with your dog.
  2945. JoggingTAIL
  2946. HuntingTAIL
  2947. SightingTAIL
  2948. TrackingTAIL
  2949. RetrievingTAIL
  2950. HerdingTAIL
  2951.     INFO
  2952. Companion DogTAIL
  2953. WatchdogTAIL
  2954. GuardingTAIL
  2955. Search & RescueTAIL
  2956. Water RescueTAIL
  2957. Guide for the BlindTAIL
  2958. Handicapped AssistanceTAIL
  2959. Snow Sled PullingTAIL
  2960. Weight PullingTAIL
  2961. Lure CoursingTAIL
  2962. Agility CompetitionTAIL
  2963. Competitive ObedienceTAIL
  2964. SchutzhundTAIL
  2965. Performing TricksTAIL
  2966. )INFO
  2967. PointingTAIL
  2968. >INFO
  2969. Reset all PointersSCRP
  2970. on mouseUp
  2971.   hilite me
  2972.   set cursor to watch
  2973.   --lock screen
  2974.   send resetYourself to card button id 68
  2975.   send resetYourself to card button id 73
  2976.   send resetYourself to card button id 85
  2977.   send resetYourself to card button id 86
  2978.   send resetYourself to card button id 87
  2979.   send resetYourself to card button id 88
  2980.   send resetYourself to card button id 89
  2981.   send resetYourself to card button id 90
  2982.   repeat with idx=113 to 118
  2983.     send resetYourself to card button id idx
  2984.   end repeat
  2985.   repeat with idx=126 to 132
  2986.     send resetYourself to card button id idx
  2987.   end repeat
  2988.   --unlock screen
  2989.   unhilite me
  2990. end mouseUp
  2991. CINFO
  2992. bitmap id 67data
  2993. EINFO
  2994. field id 69data
  2995. Don't careTAIL
  2996. GINFO
  2997. bitmap id 71data
  2998. HINFO
  2999. field id 72data
  3000. Don't careTAIL
  3001. JINFO
  3002. bitmap id 74data
  3003. KINFO
  3004. bitmap id 75data
  3005. LINFO
  3006. bitmap id 76data
  3007. MINFO
  3008. bitmap id 77data
  3009. OINFO
  3010. field id 79data
  3011. Don't careTAIL
  3012. PINFO
  3013. field id 80data
  3014. Don't careTAIL
  3015. QINFO
  3016. field id 81data
  3017. Don't careTAIL
  3018. RINFO
  3019. field id 82data
  3020. Don't careTAIL
  3021. SINFO
  3022. field id 83data
  3023. Don't careTAIL
  3024. [INFO
  3025. field id 91data
  3026. Don't careTAIL
  3027. \INFO
  3028. bitmap id 92data
  3029. ]INFO
  3030. bitmap id 93data
  3031. ^INFO
  3032. bitmap id 94data
  3033. _INFO
  3034. bitmap id 95data
  3035. `INFO
  3036. bitmap id 96data
  3037. aINFO
  3038. bitmap id 97data
  3039. bINFO
  3040. bitmap id 98data
  3041. cINFO
  3042. field id 99data
  3043. Don't careTAIL
  3044. dINFO
  3045. field id 100data
  3046. Don't careTAIL
  3047. eINFO
  3048. field id 101data
  3049. Don't careTAIL
  3050. fINFO
  3051. field id 102data
  3052. Don't careTAIL
  3053. gINFO
  3054. field id 103data
  3055. Don't careTAIL
  3056. hINFO
  3057. field id 104data
  3058. Don't careTAIL
  3059. jINFO
  3060. bitmap id 106data
  3061. kINFO
  3062. bitmap id 107data
  3063. lINFO
  3064. bitmap id 108data
  3065. mINFO
  3066. bitmap id 109data
  3067. nINFO
  3068. bitmap id 110data
  3069. oINFO
  3070. bitmap id 111data
  3071. pINFO
  3072. bitmap id 112data
  3073. wINFO
  3074. field id 119data
  3075. Don't careTAIL
  3076. xINFO
  3077. field id 120data
  3078. Don't careTAIL
  3079. yINFO
  3080. field id 121data
  3081. Don't careTAIL
  3082. zINFO
  3083. field id 122data
  3084. Don't careTAIL
  3085. {INFO
  3086. field id 123data
  3087. Don't careTAIL
  3088. |INFO
  3089. field id 124data
  3090. Don't careTAIL
  3091. }INFO
  3092. field id 125data
  3093. Don't careTAIL
  3094. ?SCRP
  3095. on mouseUp
  3096.   set cursor to watch
  3097.   popUp card id 75 as dialog
  3098. end mouseUp
  3099. IINFO
  3100. button id 73SCRP
  3101. on resetYourself
  3102.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3103.   put "N" into char 3 of userActivities
  3104.   put (the left of me)+4 into leftSide
  3105.   put item 2 of (location of card bitmap id 71) into pointerV
  3106.   put sliderWord0 into card field id 72
  3107.   set the location of card bitmap id 71 to leftSide, pointerV
  3108. end resetYourself
  3109. on mouseDown
  3110.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3111.   put item 2 of (location of card bitmap id 71) into pointerV
  3112.   put (the left of me)+4 into leftSide
  3113.   put (the right of me)-4 into rightSide
  3114.   repeat forever
  3115.     put mouseH() into mh
  3116.     if mh < leftSide then put leftSide into mh
  3117.     if mh > rightSide then put rightSide into mh
  3118.     set the location of card bitmap id 71 to mh, pointerV
  3119.     if mh < leftSide+12 then
  3120.       put sliderWord0 into card field id 72
  3121.     else if mh > rightSide-12 then
  3122.       put sliderWord2 into card field id 72
  3123.     else
  3124.       put sliderWord1 into card field id 72
  3125.     end if
  3126.     if the mouse is up then exit repeat
  3127.   end repeat
  3128.   put item 1 of (location of card bitmap id 71) into sh
  3129.   if sh < leftSide+12 then
  3130.     put leftSide into ph
  3131.     put "N" into tempChar
  3132.   else if sh > rightSide-12 then
  3133.     put rightSide into ph
  3134.     put "I" into tempChar
  3135.   else
  3136.     put leftSide+22 into ph
  3137.     put "Y" into tempChar
  3138.   end if
  3139.   put tempChar into char 3 of userActivities
  3140.   set the location of card bitmap id 71 to ph, pointerV
  3141. end mouseDown
  3142. UINFO
  3143. button id 85SCRP
  3144. on resetYourself
  3145.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3146.   put "N" into char 4 of userActivities
  3147.   put (the left of me)+4 into leftSide
  3148.   put item 2 of (location of card bitmap id 74) into pointerV
  3149.   put sliderWord0 into card field id 79
  3150.   set the location of card bitmap id 74 to leftSide, pointerV
  3151. end resetYourself
  3152. on mouseDown
  3153.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3154.   put item 2 of (location of card bitmap id 74) into pointerV
  3155.   put (the left of me)+4 into leftSide
  3156.   put (the right of me)-4 into rightSide
  3157.   repeat forever
  3158.     put mouseH() into mh
  3159.     if mh < leftSide then put leftSide into mh
  3160.     if mh > rightSide then put rightSide into mh
  3161.     set the location of card bitmap id 74 to mh, pointerV
  3162.     if mh < leftSide+12 then
  3163.       put sliderWord0 into card field id 79
  3164.     else if mh > rightSide-12 then
  3165.       put sliderWord2 into card field id 79
  3166.     else
  3167.       put sliderWord1 into card field id 79
  3168.     end if
  3169.     if the mouse is up then exit repeat
  3170.   end repeat
  3171.   put item 1 of (location of card bitmap id 74) into sh
  3172.   if sh < leftSide+12 then
  3173.     put leftSide into ph
  3174.     put "N" into tempChar
  3175.   else if sh > rightSide-12 then
  3176.     put rightSide into ph
  3177.     put "I" into tempChar
  3178.   else
  3179.     put leftSide+22 into ph
  3180.     put "Y" into tempChar
  3181.   end if
  3182.   put tempChar into char 4 of userActivities
  3183.   set the location of card bitmap id 74 to ph, pointerV
  3184. end mouseDown
  3185. VINFO
  3186. button id 86SCRP
  3187. on resetYourself
  3188.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3189.   put "N" into char 5 of userActivities
  3190.   put (the left of me)+4 into leftSide
  3191.   put item 2 of (location of card bitmap id 75) into pointerV
  3192.   put sliderWord0 into card field id 80
  3193.   set the location of card bitmap id 75 to leftSide, pointerV
  3194. end resetYourself
  3195. on mouseDown
  3196.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3197.   put item 2 of (location of card bitmap id 75) into pointerV
  3198.   put (the left of me)+4 into leftSide
  3199.   put (the right of me)-4 into rightSide
  3200.   repeat forever
  3201.     put mouseH() into mh
  3202.     if mh < leftSide then put leftSide into mh
  3203.     if mh > rightSide then put rightSide into mh
  3204.     set the location of card bitmap id 75 to mh, pointerV
  3205.     if mh < leftSide+12 then
  3206.       put SliderWord0 into card field id 80
  3207.     else if mh > rightSide-12 then
  3208.       put sliderWord2 into card field id 80
  3209.     else
  3210.       put sliderWord1 into card field id 80
  3211.     end if
  3212.     if the mouse is up then exit repeat
  3213.   end repeat
  3214.   put item 1 of (location of card bitmap id 75) into sh
  3215.   if sh < leftSide+12 then
  3216.     put leftSide into ph
  3217.     put "N" into tempChar
  3218.   else if sh > rightSide-12 then
  3219.     put rightSide into ph
  3220.     put "I" into tempChar
  3221.   else
  3222.     put leftSide+22 into ph
  3223.     put "Y" into tempChar
  3224.   end if
  3225.   put tempChar into char 5 of userActivities
  3226.   set the location of card bitmap id 75 to ph, pointerV
  3227. end mouseDown
  3228. WINFO
  3229. button id 87SCRP
  3230. on resetYourself
  3231.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3232.   put "N" into char 6 of userActivities
  3233.   put (the left of me)+4 into leftSide
  3234.   put item 2 of (location of card bitmap id 76) into pointerV
  3235.   put sliderWord0 into card field id 81
  3236.   set the location of card bitmap id 76 to leftSide, pointerV
  3237. end resetYourself
  3238. on mouseDown
  3239.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3240.   put item 2 of (location of card bitmap id 76) into pointerV
  3241.   put (the left of me)+4 into leftSide
  3242.   put (the right of me)-4 into rightSide
  3243.   repeat forever
  3244.     put mouseH() into mh
  3245.     if mh < leftSide then put leftSide into mh
  3246.     if mh > rightSide then put rightSide into mh
  3247.     set the location of card bitmap id 76 to mh, pointerV
  3248.     if mh < leftSide+12 then
  3249.       put sliderWord0 into card field id 81
  3250.     else if mh > rightSide-12 then
  3251.       put sliderWord2 into card field id 81
  3252.     else
  3253.       put sliderWord1 into card field id 81
  3254.     end if
  3255.     if the mouse is up then exit repeat
  3256.   end repeat
  3257.   put item 1 of (location of card bitmap id 76) into sh
  3258.   if sh < leftSide+12 then
  3259.     put leftSide into ph
  3260.     put "N" into tempChar
  3261.   else if sh > rightSide-12 then
  3262.     put rightSide into ph
  3263.     put "I" into tempChar
  3264.   else
  3265.     put leftSide+22 into ph
  3266.     put "Y" into tempChar
  3267.   end if
  3268.   put tempChar into char 6 of userActivities
  3269.   set the location of card bitmap id 76 to ph, pointerV
  3270. end mouseDown
  3271. XINFO
  3272. button id 88SCRP
  3273. on resetYourself
  3274.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3275.   put "N" into char 7 of userActivities
  3276.   put (the left of me)+4 into leftSide
  3277.   put item 2 of (location of card bitmap id 77) into pointerV
  3278.   put sliderWord0 into card field id 82
  3279.   set the location of card bitmap id 77 to leftSide, pointerV
  3280. end resetYourself
  3281. on mouseDown
  3282.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3283.   put item 2 of (location of card bitmap id 77) into pointerV
  3284.   put (the left of me)+4 into leftSide
  3285.   put (the right of me)-4 into rightSide
  3286.   repeat forever
  3287.     put mouseH() into mh
  3288.     if mh < leftSide then put leftSide into mh
  3289.     if mh > rightSide then put rightSide into mh
  3290.     set the location of card bitmap id 77 to mh, pointerV
  3291.     if mh < leftSide+12 then
  3292.       put sliderWord0 into card field id 82
  3293.     else if mh > rightSide-12 then
  3294.       put sliderWord2 into card field id 82
  3295.     else
  3296.       put sliderWord1 into card field id 82
  3297.     end if
  3298.     if the mouse is up then exit repeat
  3299.   end repeat
  3300.   put item 1 of (location of card bitmap id 77) into sh
  3301.   if sh < leftSide+12 then
  3302.     put leftSide into ph
  3303.     put "N" into tempChar
  3304.   else if sh > rightSide-12 then
  3305.     put rightSide into ph
  3306.     put "I" into tempChar
  3307.   else
  3308.     put leftSide+22 into ph
  3309.     put "Y" into tempChar
  3310.   end if
  3311.   put tempChar into char 7 of userActivities
  3312.   set the location of card bitmap id 77 to ph, pointerV
  3313. end mouseDown
  3314. YINFO
  3315. button id 89SCRP
  3316. on resetYourself
  3317.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3318.   put "N" into char 8 of userActivities
  3319.   put (the left of me)+4 into leftSide
  3320.   put item 2 of (location of card bitmap id 78) into pointerV
  3321.   put sliderWord0 into card field id 83
  3322.   set the location of card bitmap id 78 to leftSide, pointerV
  3323. end resetYourself
  3324. on mouseDown
  3325.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3326.   put item 2 of (location of card bitmap id 78) into pointerV
  3327.   put (the left of me)+4 into leftSide
  3328.   put (the right of me)-4 into rightSide
  3329.   repeat forever
  3330.     put mouseH() into mh
  3331.     if mh < leftSide then put leftSide into mh
  3332.     if mh > rightSide then put rightSide into mh
  3333.     set the location of card bitmap id 78 to mh, pointerV
  3334.     if mh < leftSide+12 then
  3335.       put sliderWord0 into card field id 83
  3336.     else if mh > rightSide-12 then
  3337.       put sliderWord2 into card field id 83
  3338.     else
  3339.       put sliderWord1 into card field id 83
  3340.     end if
  3341.     if the mouse is up then exit repeat
  3342.   end repeat
  3343.   put item 1 of (location of card bitmap id 78) into sh
  3344.   if sh < leftSide+12 then
  3345.     put leftSide into ph
  3346.     put "N" into tempChar
  3347.   else if sh > rightSide-12 then
  3348.     put rightSide into ph
  3349.     put "I" into tempChar
  3350.   else
  3351.     put leftSide+22 into ph
  3352.     put "Y" into tempChar
  3353.   end if
  3354.   put tempChar into char 8 of userActivities
  3355.   set the location of card bitmap id 78 to ph, pointerV
  3356. end mouseDown
  3357. ZINFO
  3358. button id 90SCRP
  3359. on resetYourself
  3360.   global userActivities, sliderWord0
  3361.   put "N" into char 23 of userActivities
  3362.   put (the left of me)+4 into leftSide
  3363.   put item 2 of (location of card bitmap id 92) into pointerV
  3364.   put sliderWord0 into card field id 91
  3365.   set the location of card bitmap id 92 to leftSide, pointerV
  3366. end resetYourself
  3367. on mouseDown
  3368.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3369.   put item 2 of (location of card bitmap id 92) into pointerV
  3370.   put (the left of me)+4 into leftSide
  3371.   put (the right of me)-4 into rightSide
  3372.   repeat forever
  3373.     put mouseH() into mh
  3374.     if mh < leftSide then put leftSide into mh
  3375.     if mh > rightSide then put rightSide into mh
  3376.     set the location of card bitmap id 92 to mh, pointerV
  3377.     if mh < leftSide+12 then
  3378.       put sliderWord0 into card field id 91
  3379.     else if mh > rightSide-12 then
  3380.       put sliderWord2 into card field id 91
  3381.     else
  3382.       put sliderWord1 into card field id 91
  3383.     end if
  3384.     if the mouse is up then exit repeat
  3385.   end repeat
  3386.   put item 1 of (location of card bitmap id 92) into sh
  3387.   if sh < leftSide+12 then
  3388.     put leftSide into ph
  3389.     put "N" into tempChar
  3390.   else if sh > rightSide-12 then
  3391.     put rightSide into ph
  3392.     put "I" into tempChar
  3393.   else
  3394.     put leftSide+22 into ph
  3395.     put "Y" into tempChar
  3396.   end if
  3397.   put tempChar into char 23 of userActivities
  3398.   set the location of card bitmap id 92 to ph, pointerV
  3399. end mouseDown
  3400. qINFO
  3401. button id 113SCRP
  3402. on resetYourself
  3403.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3404.   put "N" into char 9 of userActivities
  3405.   put (the left of me)+4 into leftSide
  3406.   put item 2 of (location of card bitmap id 93) into pointerV
  3407.   put sliderWord0 into card field id 99
  3408.   set the location of card bitmap id 93 to leftSide, pointerV
  3409. end resetYourself
  3410. on mouseDown
  3411.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3412.   put item 2 of (location of card bitmap id 93) into pointerV
  3413.   put (the left of me)+4 into leftSide
  3414.   put (the right of me)-4 into rightSide
  3415.   repeat forever
  3416.     put mouseH() into mh
  3417.     if mh < leftSide then put leftSide into mh
  3418.     if mh > rightSide then put rightSide into mh
  3419.     set the location of card bitmap id 93 to mh, pointerV
  3420.     if mh < leftSide+12 then
  3421.       put sliderWord0 into card field id 99
  3422.     else if mh > rightSide-12 then
  3423.       put sliderWord2 into card field id 99
  3424.     else
  3425.       put sliderWord1 into card field id 99
  3426.     end if
  3427.     if the mouse is up then exit repeat
  3428.   end repeat
  3429.   put item 1 of (location of card bitmap id 93) into sh
  3430.   if sh < leftSide+12 then
  3431.     put leftSide into ph
  3432.     put "N" into tempChar
  3433.   else if sh > rightSide-12 then
  3434.     put rightSide into ph
  3435.     put "I" into tempChar
  3436.   else
  3437.     put leftSide+22 into ph
  3438.     put "Y" into tempChar
  3439.   end if
  3440.   put tempChar into char 9 of userActivities
  3441.   set the location of card bitmap id 93 to ph, pointerV
  3442. end mouseDown
  3443. rINFO
  3444. button id 114SCRP
  3445. on resetYourself
  3446.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3447.   put "N" into char 10 of userActivities
  3448.   put (the left of me)+4 into leftSide
  3449.   put item 2 of (location of card bitmap id 94) into pointerV
  3450.   put sliderWord0 into card field id 100
  3451.   set the location of card bitmap id 94 to leftSide, pointerV
  3452. end resetYourself
  3453. on mouseDown
  3454.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3455.   put item 2 of (location of card bitmap id 94) into pointerV
  3456.   put (the left of me)+4 into leftSide
  3457.   put (the right of me)-4 into rightSide
  3458.   repeat forever
  3459.     put mouseH() into mh
  3460.     if mh < leftSide then put leftSide into mh
  3461.     if mh > rightSide then put rightSide into mh
  3462.     set the location of card bitmap id 94 to mh, pointerV
  3463.     if mh < leftSide+12 then
  3464.       put sliderWord0 into card field id 100
  3465.     else if mh > rightSide-12 then
  3466.       put sliderWord2 into card field id 100
  3467.     else
  3468.       put sliderWord1 into card field id 100
  3469.     end if
  3470.     if the mouse is up then exit repeat
  3471.   end repeat
  3472.   put item 1 of (location of card bitmap id 94) into sh
  3473.   if sh < leftSide+12 then
  3474.     put leftSide into ph
  3475.     put "N" into tempChar
  3476.   else if sh > rightSide-12 then
  3477.     put rightSide into ph
  3478.     put "I" into tempChar
  3479.   else
  3480.     put leftSide+22 into ph
  3481.     put "Y" into tempChar
  3482.   end if
  3483.   put tempChar into char 10 of userActivities
  3484.   set the location of card bitmap id 94 to ph, pointerV
  3485. end mouseDown
  3486. sINFO
  3487. button id 115SCRP
  3488. on resetYourself
  3489.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3490.   put "N" into char 12 of userActivities
  3491.   put (the left of me)+4 into leftSide
  3492.   put item 2 of (location of card bitmap id 95) into pointerV
  3493.   put sliderWord0 into card field id 101
  3494.   set the location of card bitmap id 95 to leftSide, pointerV
  3495. end resetYourself
  3496. on mouseDown
  3497.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3498.   put item 2 of (location of card bitmap id 95) into pointerV
  3499.   put (the left of me)+4 into leftSide
  3500.   put (the right of me)-4 into rightSide
  3501.   repeat forever
  3502.     put mouseH() into mh
  3503.     if mh < leftSide then put leftSide into mh
  3504.     if mh > rightSide then put rightSide into mh
  3505.     set the location of card bitmap id 95 to mh, pointerV
  3506.     if mh < leftSide+12 then
  3507.       put sliderWord0 into card field id 101
  3508.     else if mh > rightSide-12 then
  3509.       put sliderWord2 into card field id 101
  3510.     else
  3511.       put sliderWord1 into card field id 101
  3512.     end if
  3513.     if the mouse is up then exit repeat
  3514.   end repeat
  3515.   put item 1 of (location of card bitmap id 95) into sh
  3516.   if sh < leftSide+12 then
  3517.     put leftSide into ph
  3518.     put "N" into tempChar
  3519.   else if sh > rightSide-12 then
  3520.     put rightSide into ph
  3521.     put "I" into tempChar
  3522.   else
  3523.     put leftSide+22 into ph
  3524.     put "Y" into tempChar
  3525.   end if
  3526.   put tempChar into char 12 of userActivities
  3527.   set the location of card bitmap id 95 to ph, pointerV
  3528. end mouseDown
  3529. tINFO
  3530. button id 116SCRP
  3531. on resetYourself
  3532.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3533.   put "N" into char 13 of userActivities
  3534.   put (the left of me)+4 into leftSide
  3535.   put item 2 of (location of card bitmap id 96) into pointerV
  3536.   put sliderWord0 into card field id 102
  3537.   set the location of card bitmap id 96 to leftSide, pointerV
  3538. end resetYourself
  3539. on mouseDown
  3540.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3541.   put item 2 of (location of card bitmap id 96) into pointerV
  3542.   put (the left of me)+4 into leftSide
  3543.   put (the right of me)-4 into rightSide
  3544.   repeat forever
  3545.     put mouseH() into mh
  3546.     if mh < leftSide then put leftSide into mh
  3547.     if mh > rightSide then put rightSide into mh
  3548.     set the location of card bitmap id 96 to mh, pointerV
  3549.     if mh < leftSide+12 then
  3550.       put sliderWord0 into card field id 102
  3551.     else if mh > rightSide-12 then
  3552.       put sliderWord2 into card field id 102
  3553.     else
  3554.       put sliderWord1 into card field id 102
  3555.     end if
  3556.     if the mouse is up then exit repeat
  3557.   end repeat
  3558.   put item 1 of (location of card bitmap id 96) into sh
  3559.   if sh < leftSide+12 then
  3560.     put leftSide into ph
  3561.     put "N" into tempChar
  3562.   else if sh > rightSide-12 then
  3563.     put rightSide into ph
  3564.     put "I" into tempChar
  3565.   else
  3566.     put leftSide+22 into ph
  3567.     put "Y" into tempChar
  3568.   end if
  3569.   put tempChar into char 13 of userActivities
  3570.   set the location of card bitmap id 96 to ph, pointerV
  3571. end mouseDown
  3572. uINFO
  3573. button id 117SCRP
  3574. on resetYourself
  3575.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3576.   put "N" into char 14 of userActivities
  3577.   put (the left of me)+4 into leftSide
  3578.   put item 2 of (location of card bitmap id 97) into pointerV
  3579.   put sliderWord0 into card field id 103
  3580.   set the location of card bitmap id 97 to leftSide, pointerV
  3581. end resetYourself
  3582. on mouseDown
  3583.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3584.   put item 2 of (location of card bitmap id 97) into pointerV
  3585.   put (the left of me)+4 into leftSide
  3586.   put (the right of me)-4 into rightSide
  3587.   repeat forever
  3588.     put mouseH() into mh
  3589.     if mh < leftSide then put leftSide into mh
  3590.     if mh > rightSide then put rightSide into mh
  3591.     set the location of card bitmap id 97 to mh, pointerV
  3592.     if mh < leftSide+12 then
  3593.       put sliderWord0 into card field id 103
  3594.     else if mh > rightSide-12 then
  3595.       put sliderWord2 into card field id 103
  3596.     else
  3597.       put sliderWord1 into card field id 103
  3598.     end if
  3599.     if the mouse is up then exit repeat
  3600.   end repeat
  3601.   put item 1 of (location of card bitmap id 97) into sh
  3602.   if sh < leftSide+12 then
  3603.     put leftSide into ph
  3604.     put "N" into tempChar
  3605.   else if sh > rightSide-12 then
  3606.     put rightSide into ph
  3607.     put "I" into tempChar
  3608.   else
  3609.     put leftSide+22 into ph
  3610.     put "Y" into tempChar
  3611.   end if
  3612.   put tempChar into char 14 of userActivities
  3613.   set the location of card bitmap id 97 to ph, pointerV
  3614. end mouseDown
  3615. vINFO
  3616. button id 118SCRP
  3617. on resetYourself
  3618.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3619.   put "N" into char 1 of userActivities
  3620.   put (the left of me)+4 into leftSide
  3621.   put item 2 of (location of card bitmap id 98) into pointerV
  3622.   put sliderWord0 into card field id 104
  3623.   set the location of card bitmap id 98 to leftSide, pointerV
  3624. end resetYourself
  3625. on mouseDown
  3626.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3627.   put item 2 of (location of card bitmap id 98) into pointerV
  3628.   put (the left of me)+4 into leftSide
  3629.   put (the right of me)-4 into rightSide
  3630.   repeat forever
  3631.     put mouseH() into mh
  3632.     if mh < leftSide then put leftSide into mh
  3633.     if mh > rightSide then put rightSide into mh
  3634.     set the location of card bitmap id 98 to mh, pointerV
  3635.     if mh < leftSide+12 then
  3636.       put sliderWord0 into card field id 104
  3637.     else if mh > rightSide-12 then
  3638.       put sliderWord2 into card field id 104
  3639.     else
  3640.       put sliderWord1 into card field id 104
  3641.     end if
  3642.     if the mouse is up then exit repeat
  3643.   end repeat
  3644.   put item 1 of (location of card bitmap id 98) into sh
  3645.   if sh < leftSide+12 then
  3646.     put leftSide into ph
  3647.     put "N" into tempChar
  3648.   else if sh > rightSide-12 then
  3649.     put rightSide into ph
  3650.     put "I" into tempChar
  3651.   else
  3652.     put leftSide+22 into ph
  3653.     put "Y" into tempChar
  3654.   end if
  3655.   put tempChar into char 1 of userActivities
  3656.   set the location of card bitmap id 98 to ph, pointerV
  3657. end mouseDown
  3658. ~INFO
  3659. button id 126SCRP
  3660. on resetYourself
  3661.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3662.   put "N" into char 15 of userActivities
  3663.   put (the left of me)+4 into leftSide
  3664.   put item 2 of (location of card bitmap id 106) into pointerV
  3665.   put sliderWord0 into card field id 119
  3666.   set the location of card bitmap id 106 to leftSide, pointerV
  3667. end resetYourself
  3668. on mouseDown
  3669.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3670.   put item 2 of (location of card bitmap id 106) into pointerV
  3671.   put (the left of me)+4 into leftSide
  3672.   put (the right of me)-4 into rightSide
  3673.   repeat forever
  3674.     put mouseH() into mh
  3675.     if mh < leftSide then put leftSide into mh
  3676.     if mh > rightSide then put rightSide into mh
  3677.     set the location of card bitmap id 106 to mh, pointerV
  3678.     if mh < leftSide+12 then
  3679.       put sliderWord0 into card field id 119
  3680.     else if mh > rightSide-12 then
  3681.       put sliderWord2 into card field id 119
  3682.     else
  3683.       put sliderWord1 into card field id 119
  3684.     end if
  3685.     if the mouse is up then exit repeat
  3686.   end repeat
  3687.   put item 1 of (location of card bitmap id 106) into sh
  3688.   if sh < leftSide+12 then
  3689.     put leftSide into ph
  3690.     put "N" into tempChar
  3691.   else if sh > rightSide-12 then
  3692.     put rightSide into ph
  3693.     put "I" into tempChar
  3694.   else
  3695.     put leftSide+22 into ph
  3696.     put "Y" into tempChar
  3697.   end if
  3698.   put tempChar into char 15 of userActivities
  3699.   set the location of card bitmap id 106 to ph, pointerV
  3700. end mouseDown
  3701. button id 127SCRP
  3702. on resetYourself
  3703.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3704.   put "N" into char 17 of userActivities
  3705.   put (the left of me)+4 into leftSide
  3706.   put item 2 of (location of card bitmap id 107) into pointerV
  3707.   put sliderWord0 into card field id 120
  3708.   set the location of card bitmap id 107 to leftSide, pointerV
  3709. end resetYourself
  3710. on mouseDown
  3711.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3712.   put item 2 of (location of card bitmap id 107) into pointerV
  3713.   put (the left of me)+4 into leftSide
  3714.   put (the right of me)-4 into rightSide
  3715.   repeat forever
  3716.     put mouseH() into mh
  3717.     if mh < leftSide then put leftSide into mh
  3718.     if mh > rightSide then put rightSide into mh
  3719.     set the location of card bitmap id 107 to mh, pointerV
  3720.     if mh < leftSide+12 then
  3721.       put sliderWord0 into card field id 120
  3722.     else if mh > rightSide-12 then
  3723.       put sliderWord2 into card field id 120
  3724.     else
  3725.       put sliderWord1 into card field id 120
  3726.     end if
  3727.     if the mouse is up then exit repeat
  3728.   end repeat
  3729.   put item 1 of (location of card bitmap id 107) into sh
  3730.   if sh < leftSide+12 then
  3731.     put leftSide into ph
  3732.     put "N" into tempChar
  3733.   else if sh > rightSide-12 then
  3734.     put rightSide into ph
  3735.     put "I" into tempChar
  3736.   else
  3737.     put leftSide+22 into ph
  3738.     put "Y" into tempChar
  3739.   end if
  3740.   put tempChar into char 17 of userActivities
  3741.   set the location of card bitmap id 107 to ph, pointerV
  3742. end mouseDown
  3743. button id 128SCRP
  3744. on resetYourself
  3745.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3746.   put "N" into char 19 of userActivities
  3747.   put (the left of me)+4 into leftSide
  3748.   put item 2 of (location of card bitmap id 108) into pointerV
  3749.   put sliderWord0 into card field id 121
  3750.   set the location of card bitmap id 108 to leftSide, pointerV
  3751. end resetYourself
  3752. on mouseDown
  3753.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3754.   put item 2 of (location of card bitmap id 108) into pointerV
  3755.   put (the left of me)+4 into leftSide
  3756.   put (the right of me)-4 into rightSide
  3757.   repeat forever
  3758.     put mouseH() into mh
  3759.     if mh < leftSide then put leftSide into mh
  3760.     if mh > rightSide then put rightSide into mh
  3761.     set the location of card bitmap id 108 to mh, pointerV
  3762.     if mh < leftSide+12 then
  3763.       put sliderWord0 into card field id 121
  3764.     else if mh > rightSide-12 then
  3765.       put sliderWord2 into card field id 121
  3766.     else
  3767.       put sliderWord1 into card field id 121
  3768.     end if
  3769.     if the mouse is up then exit repeat
  3770.   end repeat
  3771.   put item 1 of (location of card bitmap id 108) into sh
  3772.   if sh < leftSide+12 then
  3773.     put leftSide into ph
  3774.     put "N" into tempChar
  3775.   else if sh > rightSide-12 then
  3776.     put rightSide into ph
  3777.     put "I" into tempChar
  3778.   else
  3779.     put leftSide+22 into ph
  3780.     put "Y" into tempChar
  3781.   end if
  3782.   put tempChar into char 19 of userActivities
  3783.   set the location of card bitmap id 108 to ph, pointerV
  3784. end mouseDown
  3785. button id 129SCRP
  3786. on resetYourself
  3787.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3788.   put "N" into char 18 of userActivities
  3789.   put (the left of me)+4 into leftSide
  3790.   put item 2 of (location of card bitmap id 109) into pointerV
  3791.   put sliderWord0 into card field id 122
  3792.   set the location of card bitmap id 109 to leftSide, pointerV
  3793. end resetYourself
  3794. on mouseDown
  3795.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3796.   put item 2 of (location of card bitmap id 109) into pointerV
  3797.   put (the left of me)+4 into leftSide
  3798.   put (the right of me)-4 into rightSide
  3799.   repeat forever
  3800.     put mouseH() into mh
  3801.     if mh < leftSide then put leftSide into mh
  3802.     if mh > rightSide then put rightSide into mh
  3803.     set the location of card bitmap id 109 to mh, pointerV
  3804.     if mh < leftSide+12 then
  3805.       put sliderWord0 into card field id 122
  3806.     else if mh > rightSide-12 then
  3807.       put sliderWord2 into card field id 122
  3808.     else
  3809.       put sliderWord1 into card field id 122
  3810.     end if
  3811.     if the mouse is up then exit repeat
  3812.   end repeat
  3813.   put item 1 of (location of card bitmap id 109) into sh
  3814.   if sh < leftSide+12 then
  3815.     put leftSide into ph
  3816.     put "N" into tempChar
  3817.   else if sh > rightSide-12 then
  3818.     put rightSide into ph
  3819.     put "I" into tempChar
  3820.   else
  3821.     put leftSide+22 into ph
  3822.     put "Y" into tempChar
  3823.   end if
  3824.   put tempChar into char 18 of userActivities
  3825.   set the location of card bitmap id 109 to ph, pointerV
  3826. end mouseDown
  3827. button id 130SCRP
  3828. on resetYourself
  3829.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3830.   put "N" into char 20 of userActivities
  3831.   put (the left of me)+4 into leftSide
  3832.   put item 2 of (location of card bitmap id 110) into pointerV
  3833.   put sliderWord0 into card field id 123
  3834.   set the location of card bitmap id 110 to leftSide, pointerV
  3835. end resetYourself
  3836. on mouseDown
  3837.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3838.   put item 2 of (location of card bitmap id 110) into pointerV
  3839.   put (the left of me)+4 into leftSide
  3840.   put (the right of me)-4 into rightSide
  3841.   repeat forever
  3842.     put mouseH() into mh
  3843.     if mh < leftSide then put leftSide into mh
  3844.     if mh > rightSide then put rightSide into mh
  3845.     set the location of card bitmap id 110 to mh, pointerV
  3846.     if mh < leftSide+12 then
  3847.       put sliderWord0 into card field id 123
  3848.     else if mh > rightSide-12 then
  3849.       put sliderWord2 into card field id 123
  3850.     else
  3851.       put sliderWord1 into card field id 123
  3852.     end if
  3853.     if the mouse is up then exit repeat
  3854.   end repeat
  3855.   put item 1 of (location of card bitmap id 110) into sh
  3856.   if sh < leftSide+12 then
  3857.     put leftSide into ph
  3858.     put "N" into tempChar
  3859.   else if sh > rightSide-12 then
  3860.     put rightSide into ph
  3861.     put "I" into tempChar
  3862.   else
  3863.     put leftSide+22 into ph
  3864.     put "Y" into tempChar
  3865.   end if
  3866.   put tempChar into char 20 of userActivities
  3867.   set the location of card bitmap id 110 to ph, pointerV
  3868. end mouseDown
  3869. button id 131SCRP
  3870. on resetYourself
  3871.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3872.   put "N" into char 21 of userActivities
  3873.   put (the left of me)+4 into leftSide
  3874.   put item 2 of (location of card bitmap id 111) into pointerV
  3875.   put sliderWord0 into card field id 124
  3876.   set the location of card bitmap id 111 to leftSide, pointerV
  3877. end resetYourself
  3878. on mouseDown
  3879.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3880.   put item 2 of (location of card bitmap id 111) into pointerV
  3881.   put (the left of me)+4 into leftSide
  3882.   put (the right of me)-4 into rightSide
  3883.   repeat forever
  3884.     put mouseH() into mh
  3885.     if mh < leftSide then put leftSide into mh
  3886.     if mh > rightSide then put rightSide into mh
  3887.     set the location of card bitmap id 111 to mh, pointerV
  3888.     if mh < leftSide+12 then
  3889.       put sliderWord0 into card field id 124
  3890.     else if mh > rightSide-12 then
  3891.       put sliderWord2 into card field id 124
  3892.     else
  3893.       put sliderWord1 into card field id 124
  3894.     end if
  3895.     if the mouse is up then exit repeat
  3896.   end repeat
  3897.   put item 1 of (location of card bitmap id 111) into sh
  3898.   if sh < leftSide+12 then
  3899.     put leftSide into ph
  3900.     put "N" into tempChar
  3901.   else if sh > rightSide-12 then
  3902.     put rightSide into ph
  3903.     put "I" into tempChar
  3904.   else
  3905.     put leftSide+22 into ph
  3906.     put "Y" into tempChar
  3907.   end if
  3908.   put tempChar into char 21 of userActivities
  3909.   set the location of card bitmap id 111 to ph, pointerV
  3910. end mouseDown
  3911. button id 132SCRP
  3912. on resetYourself
  3913.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3914.   put "N" into char 22 of userActivities
  3915.   put (the left of me)+4 into leftSide
  3916.   put item 2 of (location of card bitmap id 112) into pointerV
  3917.   put sliderWord0 into card field id 125
  3918.   set the location of card bitmap id 112 to leftSide, pointerV
  3919. end resetYourself
  3920. on mouseDown
  3921.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3922.   put item 2 of (location of card bitmap id 112) into pointerV
  3923.   put (the left of me)+4 into leftSide
  3924.   put (the right of me)-4 into rightSide
  3925.   repeat forever
  3926.     put mouseH() into mh
  3927.     if mh < leftSide then put leftSide into mh
  3928.     if mh > rightSide then put rightSide into mh
  3929.     set the location of card bitmap id 112 to mh, pointerV
  3930.     if mh < leftSide+12 then
  3931.       put sliderWord0 into card field id 125
  3932.     else if mh > rightSide-12 then
  3933.       put sliderWord2 into card field id 125
  3934.     else
  3935.       put sliderWord1 into card field id 125
  3936.     end if
  3937.     if the mouse is up then exit repeat
  3938.   end repeat
  3939.   put item 1 of (location of card bitmap id 112) into sh
  3940.   if sh < leftSide+12 then
  3941.     put leftSide into ph
  3942.     put "N" into tempChar
  3943.   else if sh > rightSide-12 then
  3944.     put rightSide into ph
  3945.     put "I" into tempChar
  3946.   else
  3947.     put leftSide+22 into ph
  3948.     put "Y" into tempChar
  3949.   end if
  3950.   put tempChar into char 22 of userActivities
  3951.   set the location of card bitmap id 112 to ph, pointerV
  3952. end mouseDown
  3953. DINFO
  3954. button id 68SCRP
  3955. on resetYourself
  3956.   global userActivities, sliderWord0
  3957.   put "N" into char 2 of userActivities
  3958.   put (the left of me)+4 into leftSide
  3959.   put item 2 of (location of card bitmap id 67) into pointerV
  3960.   put sliderWord0 into card field id 69
  3961.   set the location of card bitmap id 67 to leftSide, pointerV
  3962. end resetYourself
  3963. on setYourself which
  3964.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3965.   put (the left of me)+4 into leftSide
  3966.   put (the right of me)-4 into rightSide
  3967.   if which=0 then
  3968.     put sliderWord0 into theWord
  3969.     put leftSide into ph
  3970.   else if which=1 then
  3971.     put sliderWord1 into theWord
  3972.     put leftSide+22 into ph
  3973.   else
  3974.     put sliderWord2 into theWord
  3975.     put rightSide into ph
  3976.   end if
  3977.   put item 2 of (location of card bitmap id 67) into pointerV
  3978.   set the location of card bitmap id 67 to ph, pointerV
  3979.   put theWord into card field id 69
  3980. end setYourself
  3981. on mouseDown
  3982.   global userActivities, sliderWord0, sliderWord1, sliderWord2
  3983.   put item 2 of (location of card bitmap id 67) into pointerV
  3984.   put (the left of me)+4 into leftSide
  3985.   put (the right of me)-4 into rightSide
  3986.   repeat forever
  3987.     put mouseH() into mh
  3988.     if mh < leftSide then put leftSide into mh
  3989.     if mh > rightSide then put rightSide into mh
  3990.     set the location of card bitmap id 67 to mh, pointerV
  3991.     if mh < leftSide+12 then
  3992.       put sliderWord0 into card field id 69
  3993.     else if mh > rightSide-12 then
  3994.       put sliderWord2 into card field id 69
  3995.     else
  3996.       put sliderWord1 into card field id 69
  3997.     end if
  3998.     if the mouse is up then exit repeat
  3999.   end repeat
  4000.   put item 1 of (location of card bitmap id 67) into sh
  4001.   if sh < leftSide+12 then
  4002.     put leftSide into ph
  4003.     put "N" into tempChar
  4004.   else if sh > rightSide-12 then
  4005.     put rightSide into ph
  4006.     put "I" into tempChar
  4007.   else
  4008.     put leftSide+22 into ph
  4009.     put "Y" into tempChar
  4010.   end if
  4011.   put tempChar into char 2 of userActivities
  4012.   set the location of card bitmap id 67 to ph, pointerV
  4013. end mouseDown
  4014. MbbMMMM
  4015. MbbMMMM
  4016. MMbMMMM
  4017. MMMMMMM
  4018. MMMMMM
  4019. MMMMMMM
  4020. bMbMMM
  4021. MbMbMM
  4022. bMbMbM
  4023. MMbMbM
  4024. MMM/MMbMbM
  4025.     MMbM
  4026. MMMMMM
  4027. bMbMbM
  4028. MbMbM
  4029. MbMbM
  4030. MbMbM
  4031. MbMbM
  4032. MMMb/
  4033. bMMMMb/
  4034. MMMb/
  4035. MMMMMb/
  4036. MbMMbMb
  4037. MMMb/
  4038. MMMb/
  4039. MbMMbMb
  4040. MMMb/
  4041. bMMMMM
  4042. MMMb/
  4043. MMMb/
  4044. 0GYG]
  4045. 00000
  4046. 00000
  4047. 00000
  4048. ,00,0
  4049. 00000
  4050. 00000
  4051. 00000
  4052. 00000
  4053. 00000,0
  4054. 0000,
  4055. 000,0
  4056. 000000
  4057. 00000
  4058. 000000
  4059. 0,0000
  4060. 00000
  4061. 00000
  4062. 00000
  4063. 00000
  4064. 00000
  4065. field id 2data
  4066. Other PetsTAIL
  4067. Some breeds are too rambunctious to be around small children (8 or younger) or elderly persons.
  4068.                                            Other Pets
  4069. Some breeds get along well with cats, but may treat small rodents and birds as prey.  Some breeds do better in a household without cats, and some do better without other dogs.
  4070. PeopleTAIL
  4071. Manners: Well-behaved around the house.
  4072. Basic Obedience: Sit, down, come, stand, stay, heel, and house manners.
  4073. Advanced Obedience: Formal obedience training including heeling off leash, retrieving, jumping, and other off-leash work.
  4074. TrainingTAIL
  4075.     DominanceSCRP
  4076. on openCard
  4077.   global readOnly, careIDs, friendlyIDs, userDominance1, userDominance2
  4078.   enable bkgnd button id 26    -- "More"
  4079.   show bg bitmap "More Up"
  4080.   if readOnly then
  4081.     if userDominance1 is not empty then send setYourself && userDominance1 to card button id 38
  4082.     if userDominance2 is not empty then send setYourself && userDominance2 to card button id 40
  4083.     if item 6 of careIDs is not empty then send mouseUp to card button id (item 6 of careIDs)
  4084.      
  4085.     -- Friendliness
  4086.     unhilite card button id 44
  4087.     send mouseUp to card button id 44  -- No Preference; unhilites the other buttons.
  4088.     -- Also note that a mouseUp does NOT hilite; that happens on a mouseDown.
  4089.     if friendlyIDs is empty then
  4090.       hilite card button id 44
  4091.     else
  4092.       repeat with idx=1 to the number of items in friendlyIDs
  4093.         hilite card button id (item idx of friendlyIDs)
  4094.       end repeat
  4095.     end if
  4096.   end if
  4097.   pass openCard
  4098. end openCard
  4099. on closeCard
  4100.   global userCare, careIDs, friendlyIDs, userFriendly, userDominance1, userDominance2
  4101.   if userDominance1 is empty then send getCurrentSetting to card button id 38
  4102.   if userDominance2 is empty then send getCurrentSetting to card button id 40
  4103.   -- Friendliness
  4104.   put empty into userFriendly
  4105.   put empty into friendlyIDs
  4106.   put 1 into idx
  4107.   if hilite of card button id 45 is true then 
  4108.     put 1 into userFriendly
  4109.     put 45 into item idx of friendlyIDs
  4110.     add 1 to idx
  4111.   end if
  4112.   if hilite of card button id 46 is true then 
  4113.     put 3 after userFriendly
  4114.     put 46 into item idx of friendlyIDs
  4115.     add 1 to idx
  4116.   end if
  4117.   if hilite of card button id 47 is true then 
  4118.     put 5 after userFriendly
  4119.     put 47 into item idx of friendlyIDs
  4120.     add 1 to idx
  4121.   end if
  4122.   -- Independence
  4123.   put item 2 of field id 49 into char 6 of userCare
  4124.   put item 1 of field id 49 into item 6 of careIDs
  4125.   pass closeCard
  4126. end closeCard
  4127. -----------------------------
  4128. on setDomForPrimary domNumber
  4129.   send setYourself && domNumber to card button id 38
  4130. end setDomForPrimary
  4131. on setDomForSecondary domNumber
  4132.   send setYourself && domNumber to card button id 40
  4133. end setDomForSecondary
  4134. "+RGr
  4135. BINFO
  4136. shape id 66TAIL
  4137. <INFO
  4138. shape id 60TAIL
  4139. AINFO
  4140. shape id 65TAIL
  4141. =INFO
  4142. shape id 61TAIL
  4143. ?INFO
  4144. shape id 63TAIL
  4145. >INFO
  4146. shape id 62TAIL
  4147. ;INFO
  4148. shape id 59TAIL
  4149. :INFO
  4150. shape id 58TAIL
  4151. field id 1data
  4152. To be happy and compatible together, you and your dog should have similar dominance levels.  It is important that you assess yourself accurately and honestly in this regard.  You may either rank yourself on a scale of 1 to 10, or you may take a short questionnaire.TAIL
  4153. Primary Care-giverdata
  4154. 4,1TAIL
  4155. Secondary Care-giverdata
  4156. 31,0TAIL
  4157. Take the questionnaireSCRP
  4158. on mouseUp
  4159.   global isForPrimary
  4160.   put true into isForPrimary
  4161.   lock screen
  4162.   go card id 38
  4163.   unlock screen with visual effect scroll down very fast
  4164. end mouseUp
  4165. Take the questionnaireSCRP
  4166. on mouseUp
  4167.   global isForPrimary
  4168.   put false into isForPrimary
  4169.   lock screen
  4170.   go card id 38
  4171.   unlock screen with visual effect scroll down very fast
  4172. end mouseUp
  4173. #INFO
  4174. ?SCRP
  4175. on mouseUp
  4176.   set cursor to watch
  4177.   popUp card id 73 as dialog
  4178. end mouseUp
  4179. 'INFO
  4180. bitmap id 39data
  4181. )INFO
  4182. bitmap id 41data
  4183. *INFO
  4184. Friendlinessdata
  4185. 46,3TAIL
  4186. ,INFO
  4187. No preferenceSCRP
  4188. on mouseUp
  4189.   unhilite card button id 45
  4190.   unhilite card button id 46
  4191.   unhilite card button id 47
  4192. end mouseUp
  4193.     childprop
  4194. 0TAIL
  4195. -INFO
  4196. Very wary of strangersSCRP
  4197. on mouseUp
  4198.   unhilite card button id 44
  4199. end mouseUp
  4200.     childprop
  4201. 0TAIL
  4202. .INFO
  4203. Reserved w/strangersSCRP
  4204. on mouseUp
  4205.   unhilite card button id 44
  4206. end mouseUp
  4207.     childprop
  4208. 0TAIL
  4209. /INFO
  4210. Friendly w/strangersSCRP
  4211. on mouseUp
  4212.   unhilite card button id 44
  4213. end mouseUp
  4214.     childprop
  4215. 0TAIL
  4216. 0INFO
  4217. ?SCRP
  4218. on mouseUp
  4219.   set cursor to watch
  4220.   popUp card id 33 as dialog
  4221. end mouseUp
  4222. 1INFO
  4223. Independencedata
  4224. 52,1TAIL
  4225. 3INFO
  4226. Approximately how much time will your dog spend alone?TAIL
  4227. 4INFO
  4228. Less than 4 hours a daySCRP
  4229. on mouseUp
  4230.   if the hilite of me is false then
  4231.     put item 1 of field id 49 into buttonRef
  4232.     unhilite button id buttonRef
  4233.     hilite me
  4234.     put (the id of me) & ",1" into card field id 49
  4235.   end if
  4236. end mouseUp
  4237.     childprop
  4238. 0TAIL
  4239. 5INFO
  4240. 4 to 8 hours a daySCRP
  4241. on mouseUp
  4242.   if the hilite of me is false then
  4243.     put item 1 of field id 49 into buttonRef
  4244.     unhilite button id buttonRef
  4245.     hilite me
  4246.     put (the id of me) & ",3" into card field id 49
  4247.   end if
  4248. end mouseUp
  4249.     childprop
  4250. 0TAIL
  4251. 6INFO
  4252. More than 8 hours a daySCRP
  4253. on mouseUp
  4254.   if the hilite of me is false then
  4255.     put item 1 of field id 49 into buttonRef
  4256.     unhilite button id buttonRef
  4257.     hilite me
  4258.     put (the id of me) & ",5" into card field id 49
  4259.   end if
  4260. end mouseUp
  4261.     childprop
  4262. 0TAIL
  4263. 7INFO
  4264. ?SCRP
  4265. on mouseUp
  4266.   set cursor to watch
  4267.   popUp card id 43 as dialog
  4268. end mouseUp
  4269. 8INFO
  4270.     Dominancedata
  4271. 52,1TAIL
  4272. 9INFO
  4273. Check any that apply:TAIL
  4274. &INFO
  4275. button id 38SCRP
  4276. on resetYourself
  4277.   put (the left of me)+4 into leftSide
  4278.   put item 2 of (location of card bitmap id 39) into pointerV
  4279.   set the location of card bitmap id 39 to leftSide, pointerV
  4280. end resetYourself
  4281. on setYourself which
  4282.   put (the left of me)+4 into leftSide
  4283.   put (the right of me)-4 into rightSide
  4284.   if which=0 or which = 1 then
  4285.     put leftSide into ph
  4286.   else if which=2 then
  4287.     put leftside+22 into ph
  4288.   else if which=3 then
  4289.     put leftside+44 into ph
  4290.   else if which=4 then
  4291.     put leftside+66 into ph
  4292.   else if which=5 then
  4293.     put leftside+88 into ph
  4294.   else if which=6 then
  4295.     put leftside+110 into ph
  4296.   else if which=7 then
  4297.     put leftside+132 into ph
  4298.   else if which=8 then
  4299.     put leftside+154 into ph
  4300.   else if which=9 then
  4301.     put leftside+176 into ph
  4302.   else
  4303.     put rightSide into ph
  4304.   end if
  4305.   put item 2 of (location of card bitmap id 39) into pointerV
  4306.   set the location of card bitmap id 39 to ph, pointerV
  4307. end setYourself
  4308. ------------------------------
  4309. on getCurrentSetting
  4310.   global userDominance1
  4311.   put (the left of me)+4 into leftSide
  4312.   put item 1 of (location of card bitmap id 39) into sh
  4313.   if sh < leftSide+11 then
  4314.     put 1 into userDominance1
  4315.   else if sh < leftside+33 then
  4316.     put 2 into userDominance1
  4317.   else if sh < leftside+55 then
  4318.     put 3 into userDominance1
  4319.   else if sh < leftside+77 then
  4320.     put 4 into userDominance1
  4321.   else if sh < leftside+99 then
  4322.     put 5 into userDominance1
  4323.   else if sh < leftside+121 then
  4324.     put 6 into userDominance1
  4325.   else if sh < leftside+143 then
  4326.     put 7 into userDominance1
  4327.   else if sh < leftside+165 then
  4328.     put 8 into userDominance1
  4329.   else if sh < leftside+187 then
  4330.     put 9 into userDominance1
  4331.   else
  4332.     put 10 into userDominance1
  4333.   end if
  4334. end getCurrentSetting
  4335.   ------------------------------
  4336. on mouseDown
  4337.   global userDominance1
  4338.   put item 2 of (location of card bitmap id 39) into pointerV
  4339.   put (the left of me)+4 into leftSide
  4340.   put (the right of me)-4 into rightSide
  4341.   repeat forever
  4342.     put mouseH() into mh
  4343.     if mh < leftSide then put leftSide into mh
  4344.     if mh > rightSide then put rightSide into mh
  4345.     set the location of card bitmap id 39 to mh, pointerV
  4346.     if the mouse is up then exit repeat
  4347.   end repeat
  4348.   put item 1 of (location of card bitmap id 39) into sh
  4349.   if sh < leftSide+11 then
  4350.     put leftSide into ph
  4351.     put 1 into userDominance1
  4352.   else if sh < leftside+33 then
  4353.     put leftside+22 into ph
  4354.     put 2 into userDominance1
  4355.   else if sh < leftside+55 then
  4356.     put leftside+44 into ph
  4357.     put 3 into userDominance1
  4358.   else if sh < leftside+77 then
  4359.     put leftside+66 into ph
  4360.     put 4 into userDominance1
  4361.   else if sh < leftside+99 then
  4362.     put leftside+88 into ph
  4363.     put 5 into userDominance1
  4364.   else if sh < leftside+121 then
  4365.     put leftside+110 into ph
  4366.     put 6 into userDominance1
  4367.   else if sh < leftside+143 then
  4368.     put leftside+132 into ph
  4369.     put 7 into userDominance1
  4370.   else if sh < leftside+165 then
  4371.     put leftside+154 into ph
  4372.     put 8 into userDominance1
  4373.   else if sh < leftside+187 then
  4374.     put leftside+176 into ph
  4375.     put 9 into userDominance1
  4376.   else
  4377.     put rightSide into ph
  4378.     put 10 into userDominance1
  4379.   end if
  4380.   set the location of card bitmap id 39 to ph, pointerV
  4381. end mouseDown
  4382. (INFO
  4383. button id 40SCRP
  4384. on resetYourself
  4385.   put (the left of me)+4 into leftSide
  4386.   put item 2 of (location of card bitmap id 41) into pointerV
  4387.   set the location of card bitmap id 41 to leftSide, pointerV
  4388. end resetYourself
  4389. on setYourself which
  4390.   put (the left of me)+4 into leftSide
  4391.   put (the right of me)-4 into rightSide
  4392.   if which=0 then
  4393.     put leftside into ph
  4394.   else if which = 1 then
  4395.     put leftside+22 into ph
  4396.   else if which=2 then
  4397.     put leftside+44 into ph
  4398.   else if which=3 then
  4399.     put leftside+66 into ph
  4400.   else if which=4 then
  4401.     put leftside+88 into ph
  4402.   else if which=5 then
  4403.     put leftside+110 into ph
  4404.   else if which=6 then
  4405.     put leftside+132 into ph
  4406.   else if which=7 then
  4407.     put leftside+154 into ph
  4408.   else if which=8 then
  4409.     put leftside+176 into ph
  4410.   else if which=9 then
  4411.     put leftside+198 into ph
  4412.   else
  4413.     put rightSide into ph
  4414.   end if
  4415.   put item 2 of (location of card bitmap id 41) into pointerV
  4416.   set the location of card bitmap id 41 to ph, pointerV
  4417. end setYourself
  4418. ------------------------------
  4419. on getCurrentSetting
  4420.   global userDominance2
  4421.   put (the left of me)+4 into leftSide
  4422.   put item 1 of (location of card bitmap id 41) into sh
  4423.   if sh < leftSide+11 then
  4424.     put 0 into userDominance2
  4425.   else if sh < leftside+33 then
  4426.     put 1 into userDominance2
  4427.   else if sh < leftside+55 then
  4428.     put 2 into userDominance2
  4429.   else if sh < leftside+77 then
  4430.     put 3 into userDominance2
  4431.   else if sh < leftside+99 then
  4432.     put 4 into userDominance2
  4433.   else if sh < leftside+121 then
  4434.     put 5 into userDominance2
  4435.   else if sh < leftside+143 then
  4436.     put 6 into userDominance2
  4437.   else if sh < leftside+165 then
  4438.     put 7 into userDominance2
  4439.   else if sh < leftside+187 then
  4440.     put 8 into userDominance2
  4441.   else if sh < leftside+209 then
  4442.     put 9 into userDominance2
  4443.   else
  4444.     put 10 into userDominance2
  4445.   end if
  4446. end getCurrentSetting
  4447. ------------------------------
  4448. on mouseDown
  4449.   global userDominance2
  4450.   put item 2 of (location of card bitmap id 41) into pointerV
  4451.   put (the left of me)+4 into leftSide
  4452.   put (the right of me)-4 into rightSide
  4453.   repeat forever
  4454.     put mouseH() into mh
  4455.     if mh < leftSide then put leftSide into mh
  4456.     if mh > rightSide then put rightSide into mh
  4457.     set the location of card bitmap id 41 to mh, pointerV
  4458.     if the mouse is up then exit repeat
  4459.   end repeat
  4460.   put item 1 of (location of card bitmap id 41) into sh
  4461.   if sh < leftSide+11 then
  4462.     put leftSide into ph
  4463.     put 0 into userDominance2
  4464.   else if sh < leftside+33 then
  4465.     put leftside+22 into ph
  4466.     put 1 into userDominance2
  4467.   else if sh < leftside+55 then
  4468.     put leftside+44 into ph
  4469.     put 2 into userDominance2
  4470.   else if sh < leftside+77 then
  4471.     put leftside+66 into ph
  4472.     put 3 into userDominance2
  4473.   else if sh < leftside+99 then
  4474.     put leftside+88 into ph
  4475.     put 4 into userDominance2
  4476.   else if sh < leftside+121 then
  4477.     put leftside+110 into ph
  4478.     put 5 into userDominance2
  4479.   else if sh < leftside+143 then
  4480.     put leftside+132 into ph
  4481.     put 6 into userDominance2
  4482.   else if sh < leftside+165 then
  4483.     put leftside+154 into ph
  4484.     put 7 into userDominance2
  4485.   else if sh < leftside+187 then
  4486.     put leftside+176 into ph
  4487.     put 8 into userDominance2
  4488.   else if sh < leftside+209 then
  4489.     put leftside+198 into ph
  4490.     put 9 into userDominance2
  4491.   else
  4492.     put rightSide into ph
  4493.     put 10 into userDominance2
  4494.   end if
  4495.   set the location of card bitmap id 41 to ph, pointerV
  4496. end mouseDown
  4497. CINFO
  4498. shape id 67TAIL
  4499. DINFO
  4500. shape id 68TAIL
  4501. MbbMMMM
  4502. MMbMMMM
  4503. MMMMMMM
  4504. MMMMMM
  4505. MMMMMMM
  4506. MMMMMM
  4507. MMMMMMM
  4508. bMbMMM
  4509. MbMbMM
  4510. bMbMbM
  4511. bMbMMM
  4512. MMbMbM
  4513.     MMbM
  4514. MMbMbM
  4515. MMMbM
  4516. MMMMMM
  4517. bMbMbM
  4518. MbMbM
  4519. MbMbM
  4520. MbMbM
  4521. MbMbM
  4522. MMMb/
  4523. bMMMMb/
  4524. MMMb/
  4525. MMMMMb/
  4526. MbMMbMb
  4527. MMMb/
  4528. bMMMMM
  4529. MMMb/
  4530. MMMb/
  4531. bMMMMb/
  4532. MMMb/
  4533. MbMMbMb
  4534. MMMb/
  4535. MMMMb/
  4536. 00000
  4537. ,;0,0
  4538. 00000
  4539. 00000
  4540. 00000
  4541. 00000,0
  4542. 0000,
  4543. 000,0
  4544. 000000
  4545. 00000
  4546. 000000
  4547. 0,0000
  4548. 00000
  4549. 00000
  4550. 00000
  4551. 00000
  4552. 00000
  4553. Main Card-6SCRP
  4554. on openCard
  4555.   global credDirPrefix, curDirPrefix, rowSavers
  4556.   put credDirPrefix into curDirPrefix
  4557.   put item 6 of rowSavers into savedRow
  4558.   put first item of hilitedRows of card picklist "Credits List" into curRow
  4559.   if savedRow <> curRow then    -- Things are not as we left them.
  4560.     unhilite card picklist "Credits List"
  4561.     hilite row savedRow of card picklist "Credits List"
  4562.   end if
  4563.   send getFileCred to card picklist "Credits List"  
  4564.   pass openCard
  4565. end openCard
  4566. Credits ListSCRP
  4567. on mouseUp theRow,theCol
  4568.   global filePath, myBusy, curFileDog, littleGraphic, bigGraphic, rowSavers
  4569.   if theRow = (item 6 of rowSavers) then exit mouseUp
  4570.   set cursor to myBusy
  4571.   send stopYourself to bg movie "Little Movie"
  4572.   send stopYourself to bg movie "Slide Show"
  4573.   put cell theRow,2 of me into curFileDog
  4574.   put cell theRow,3 of me into littleGraphic
  4575.   put cell theRow,4 of me into bigGraphic
  4576.   put theRow into item 6 of rowSavers
  4577.   send showNewDog to this background
  4578. end mouseUp
  4579. ------------------------------------
  4580. on getFileCred
  4581.   global curFileDog, littleGraphic, bigGraphic
  4582.   put first item of hilitedRows of me into theRow
  4583.   if theRow is not empty then
  4584.     if theRow > 12 then set the vertical scrollLine of me to theRow-2
  4585.     put cell theRow,2 of me into curFileDog
  4586.     put cell theRow,3 of me into littleGraphic
  4587.     put cell theRow,4 of me into bigGraphic
  4588.   end if
  4589. end getFileCred
  4590. ------------------------------------
  4591. on getCreditsTable
  4592.   -- Read the credits file and put it into this picklist.
  4593.   -- This message is only used during development; it will never be
  4594.   -- called in the production version.
  4595.   global filePath
  4596.   set cursor to watch
  4597.   put filePath & "credits.lst" into credTable
  4598.   open file credTable
  4599.   repeat with idx=1 to 500
  4600.     read from file credTable until return
  4601.     if the result is not empty then exit repeat
  4602.     put it after tempHolder
  4603.     put "credits-" & idx
  4604.   end repeat
  4605.   delete the last character of tempHolder
  4606.   put tempHolder into me
  4607.   close file credTable
  4608. end getCreditsTable
  4609. MOCELL10
  4610. PRODUCTION TEAM (S)
  4611. producti
  4612. License
  4613. license_
  4614. Article Contributors
  4615. articont
  4616. Breed Reviewers
  4617. reviewer
  4618. Consultants
  4619. consulta
  4620. Photo Contributors
  4621. photcont
  4622. Slide Show Participants
  4623. slidpart
  4624. Special Thanks
  4625. specthan
  4626. Video Contributors
  4627. videcont
  4628. Video Participants
  4629. videpart
  4630. BP$P$P$P$
  4631. P2P$P$P$1
  4632. +**e`
  4633. /[*harH
  4634. 3uaZ*r
  4635.    > 
  4636.   '  
  4637. Jll]x
  4638. <1    :6=
  4639. ?==>>>
  4640. =5=<?
  4641. 22<61129
  4642. 77=><017
  4643. C@C_C_//
  4644. mlmpo
  4645. o/qlC
  4646. Plain backgroundSCRP
  4647. on openBackground
  4648.   pass openBackground
  4649. end openBackground
  4650. &TAIL
  4651. Dominance QuestionsSCRP
  4652. on openCard
  4653.   lock screen
  4654.   repeat with idx=2 to 11
  4655.     unhilite card button idx
  4656.   end repeat
  4657.   unlock screen
  4658. end openCard
  4659. OK Updata
  4660. bbbbbbb
  4661. [ZWWW
  4662. WO555
  4663. ZZZFW
  4664. WGGGXWP
  4665. HHKKT
  4666. H5555
  4667. HHH*54
  4668. OK Downdata
  4669. """Mooo
  4670. [ZWWW
  4671. """Mooo
  4672. WO555
  4673. ZZZFW
  4674. """Mooo
  4675. WGGGXWP
  4676. HHKKT
  4677. H5555
  4678. HHH*54
  4679. Return to MainSCRP
  4680. on mouseUp
  4681.   global isForPrimary, myBusy
  4682.   show card bitmap "OK Up"
  4683.   hide card bitmap "OK Down"
  4684.   set cursor to myBusy
  4685.   lock screen
  4686.   put 0 into domNumber
  4687.   repeat with idx=2 to 11
  4688.     if hilite of card button idx is true then add 1 to domNumber
  4689.     unhilite card button idx
  4690.   end repeat
  4691.   if domNumber <= 0 then put 1 into domNumber
  4692.   go card id 36
  4693.   if isForPrimary then
  4694.     send setDomForPrimary && domNumber to card id 36
  4695.   else
  4696.     send setDomForSecondary && domNumber to card id 36
  4697.   end if
  4698.   unlock screen with visual effect wipe up very fast
  4699.   set cursor to Browse
  4700. end mouseUp
  4701. on mouseDown
  4702.   show card bitmap "OK Down"
  4703.   hide card bitmap "OK Up"
  4704.   repeat until the mouse is up
  4705.     if the mouseloc is within the rectangle of me then
  4706.       show card bitmap "OK Down"
  4707.       hide card bitmap "OK Up"
  4708.     else
  4709.       show card bitmap "OK Up"
  4710.       hide card bitmap "OK Down"
  4711.     end if
  4712.   end repeat
  4713. end mouseDown
  4714. field id 12data
  4715.  I generally take charge in group situations.TAIL
  4716. button id 1TAIL
  4717. field id 24data
  4718. Check the box on all statements that apply to you.TAIL
  4719. field id 13data
  4720.  I prefer being the leader.TAIL
  4721. field id 14data
  4722.  I stand up for my ideas, even with authority figures, if I believe I
  4723. m right.TAIL
  4724. field id 15data
  4725.  I like making decisions.TAIL
  4726. field id 16data
  4727.  I usually look a person in the eye when I am talking to them.TAIL
  4728. field id 17data
  4729.  I generally feel comfortable talking to "important" people.TAIL
  4730. field id 19data
  4731.  I prefer to take the initiative rather than waiting for others to take it.TAIL
  4732. field id 20data
  4733.  I like to supervise other people.TAIL
  4734. field id 21data
  4735.  I don
  4736. t mind approaching and talking to strangers.TAIL
  4737. field id 22data
  4738.  I can usually bluff my way through a difficult situation.TAIL
  4739. button id 3TAIL
  4740. button id 4TAIL
  4741. button id 5TAIL
  4742. button id 6TAIL
  4743. button id 7TAIL
  4744. button id 8TAIL
  4745.     INFO
  4746. button id 9TAIL
  4747. button id 10TAIL
  4748. button id 11TAIL
  4749. 00000
  4750. 00000
  4751. 0,000
  4752. 0,0000
  4753. 00000
  4754. 0000000
  4755. ,00000000
  4756. 0,000
  4757. 00000
  4758. 00,00
  4759. 00000,
  4760. 0,,00
  4761. 000000
  4762. 000,0
  4763. 0,000
  4764. ,0000
  4765. 00000
  4766. ,0000
  4767. 000,0
  4768. ,000000
  4769. 00000
  4770. 0000,00,
  4771. 00000
  4772. 00000
  4773. 00000
  4774. ,0000
  4775. 0000000
  4776. 0,000
  4777. 000000
  4778. 000000
  4779. 000000
  4780. 00000
  4781. ******
  4782. 00000
  4783. 0000000
  4784. 00000
  4785. A000q
  4786. 0000000
  4787. 000000
  4788. 00000
  4789. 00000
  4790. 00000
  4791. 00000
  4792. 000000
  4793. 0,000
  4794. 0,0000000
  4795. 0000000
  4796. 00000
  4797. 000000
  4798. 00000
  4799. 00000000
  4800. 00000
  4801. 000000
  4802. ,0000
  4803. 000000
  4804. ,0000
  4805. 0000000
  4806. 00000
  4807. 00000
  4808. 00000
  4809. 0000000
  4810. ,000,
  4811. 00000
  4812. 00000
  4813. 00000
  4814. 00000
  4815. ,0000000
  4816. 0000000
  4817. 0,000000
  4818. 00000
  4819. 00000
  4820. 00000
  4821. 0,000
  4822. ,0000,
  4823. ,00,,
  4824. 0000000000
  4825. 00000
  4826. 000000
  4827. ?**4?
  4828. 000000000
  4829. 000,0
  4830. 000000
  4831. 00000
  4832. 00000
  4833. 00,000,0000
  4834. 0,000
  4835. 0000,0
  4836. 000,0
  4837. 000000
  4838. 00000
  4839. 00000
  4840. 000000
  4841. 000000,
  4842. 7*4*7
  4843. 4**4*
  4844. 4*44*
  4845. ?4!**?
  4846. 0GA0GG
  4847. 0v0G0
  4848. _6qqqa0q0
  4849. qrG60
  4850. ??;;4
  4851. 0  wr
  4852. rFr0G
  4853. 55GGr1rwrvBB5r0BwB
  4854. BAB05
  4855. rw55q6
  4856. arB0Q
  4857. B5rA55
  4858. q5Grq5
  4859. rqBab0 Q 
  4860. ??;;??;
  4861. ???????
  4862. Docking is a simple surgical procedure for trimming the dog's tail.  It is usually done within a few days of birth.
  4863. Cropping is surgery to shape the dog's ears, and is done at around 9 weeks of age.
  4864. Both docking and cropping are almost always performed for aesthetic reasons, to maintain a breed
  4865. s traditional "look".ADDD
  4866. Docking / CroppingTAIL
  4867. Exercisebkgd
  4868. Some breeds need extensive exercise to be happy and healthy.  Others are basically couch potatoes.
  4869. ExerciseTAIL
  4870.                                          Short:              Dalmatian
  4871.                                          Curly:              Poodle
  4872.                                          Wiry:               Airedale Terrier
  4873.                                          Medium:         German Shepherd
  4874.                                          Feathered:     Golden Retriever
  4875.                                          Fluffy:              Chow Chow
  4876.                                          Long:              Collie
  4877. Examples of coat typesTAIL
  4878. This question refers to general noise, not the "alarm" barking of a watchdog.  There is not necessarily any relation between the two.  On the "Dog Talents" screen, you can indicate that you want a dog that would make a good watchdog.
  4879. Probably, few people want a noisy dog.  But if it is all right to have a dog that is not especially quiet, you should consider answering "No" to this question so your choices are less limited.  With proper training, most breeds can be taught to keep the noise down.
  4880. BarkingTAIL
  4881. Some dogs are very people-oriented.  If left by themselves for long periods of time, they can become bored, lonely and sometimes destructive.  Other dogs are very self-sufficient.  They can get along just fine on their own for quite a while.
  4882. IndependenceTAIL
  4883. puptest table bkgndbkgd
  4884. Prev UpEXTI
  4885. ddata
  4886. bbbbbb
  4887. bbbbb
  4888. bbbbb
  4889. bbbbb
  4890. bbbbb
  4891. bbbbb
  4892. //000
  4893. 50J45
  4894. N//*a
  4895. bbybbby
  4896. SSfz05
  4897.     Prev DownEXTI
  4898. ddata
  4899. oooM"""
  4900. oooM"""
  4901. //000
  4902. MMMMMMM
  4903. MMMMMMMMMMM"""
  4904. N//*a
  4905. oooM"""
  4906. <<<<<
  4907. PrevSCRP
  4908. on mouseUp
  4909.   global myBusy
  4910.   show bg bitmap "Prev Up"
  4911.   hide bg bitmap "Prev Down"
  4912.   set cursor to myBusy
  4913.   lock screen
  4914.   go prev card
  4915.   unlock screen with visual effect wipe right in 40 ticks  --very fast
  4916.   set cursor to Browse
  4917. end mouseUp
  4918. on mouseDown
  4919.   show bg bitmap "Prev Down"
  4920.   hide bg bitmap "Prev Up"
  4921.   repeat until the mouse is up
  4922.     if the mouseloc is within the rectangle of me then
  4923.       show bg bitmap "Prev Down"
  4924.       hide bg bitmap "Prev Up"
  4925.     else
  4926.       show bg bitmap "Prev Up"
  4927.       hide bg bitmap "Prev Down"
  4928.     end if
  4929.   end repeat
  4930. end mouseDown
  4931. TTAIL
  4932. Next UpEXTI
  4933. ddata
  4934. bbbbb
  4935. bbbbbbb
  4936. bbbbbbbbb
  4937. bbbbb
  4938. xxxbbbb
  4939. bbbbbbb
  4940. SSff55
  4941.     Next DownEXTI
  4942. ddata
  4943. """Mooo
  4944. """Mooo
  4945. """Mooo
  4946. """Mooo
  4947. """Mooo
  4948. """Mooo
  4949. NextSCRP
  4950. on mouseUp
  4951.   global myBusy
  4952.   show bg bitmap "Next Up"
  4953.   hide bg bitmap "Next Down"
  4954.   set cursor to myBusy
  4955.   lock screen
  4956.   go next card
  4957.   unlock screen with visual effect wipe left in 40 ticks  --very fast
  4958.   set cursor to Browse
  4959. end mouseUp
  4960. on mouseDown
  4961.   show bg bitmap "Next Down"
  4962.   hide bg bitmap "Next Up"
  4963.   repeat until the mouse is up
  4964.     if the mouseloc is within the rectangle of me then
  4965.       show bg bitmap "Next Down"
  4966.       hide bg bitmap "Next Up"
  4967.     else
  4968.       show bg bitmap "Next Up"
  4969.       hide bg bitmap "Next Down"
  4970.     end if
  4971.   end repeat
  4972. end mouseDown
  4973. TTAIL
  4974. Home UpEXTI
  4975. ddata
  4976. bbbbb
  4977. bbbbb
  4978. bbbbbb
  4979. bbbbbb
  4980. bbbbbb
  4981. YYXYYYXYY
  4982. WYYYYYYYYWYYYWYYYWYYY
  4983. 01001
  4984.     Home DownEXTI
  4985. ddata
  4986. """Mooo
  4987. """Mooo
  4988. YYXYYYXYY
  4989. """Mooo
  4990. WYYYYYYYYWYYYWYYYWYYY
  4991. 01001
  4992. """MMM
  4993. MMMMMMM
  4994. Return to MainSCRP
  4995. on mouseUp
  4996.   global readOnly, myBusy
  4997.   global currentState
  4998.   show bg bitmap "Home Up"
  4999.   hide bg bitmap "Home Down"
  5000.   set cursor to myBusy
  5001.   lock screen
  5002.   go card "Main Card-" & currentState
  5003.   if readOnly then send restoreMode to this background
  5004.   unlock screen with visual effect wipe up in 30 ticks
  5005.   set cursor to Browse
  5006. end mouseUp
  5007. on mouseDown
  5008.   show bg bitmap "Home Down"
  5009.   hide bg bitmap "Home Up"
  5010.   repeat until the mouse is up
  5011.     if the mouseloc is within the rectangle of me then
  5012.       show bg bitmap "Home Down"
  5013.       hide bg bitmap "Home Up"
  5014.     else
  5015.       show bg bitmap "Home Up"
  5016.       hide bg bitmap "Home Down"
  5017.     end if
  5018.   end repeat
  5019. end mouseDown
  5020. TTAIL
  5021. Print UpEXTI
  5022. ddata
  5023. bbbbbb
  5024. bbbbb
  5025. bbbbb
  5026. bbbbbbbbbb
  5027. bbbbbb
  5028. bbbbbb
  5029. SSff55
  5030. 1TAIL
  5031. Print DownEXTI
  5032. ddata
  5033. """Mooo
  5034. """Mooo
  5035. """Mooo
  5036. 1TAIL
  5037. PrintSCRP
  5038. on mouseUp
  5039.   global myBusy
  5040.   set cursor to myBusy
  5041.   show bg bitmap "Print Up"
  5042.   hide bg bitmap "Print Down"
  5043.   push this card
  5044.   lock screen
  5045.   if the platform is "Macintosh" then open printing
  5046.   print card "PupTest print1"
  5047.   print card "PupTest print2"
  5048.   if the platform is "Macintosh" then close printing
  5049.   pop card
  5050.   set cursor to Browse
  5051. end mouseUp
  5052. on mouseDown
  5053.   show bg bitmap "Print Down"
  5054.   hide bg bitmap "Print Up"
  5055.   repeat until the mouse is up
  5056.     if the mouseloc is within the rectangle of me then
  5057.       show bg bitmap "Print Down"
  5058.       hide bg bitmap "Print Up"
  5059.     else
  5060.       show bg bitmap "Print Up"
  5061.       hide bg bitmap "Print Down"
  5062.     end if
  5063.   end repeat
  5064. end mouseDown
  5065. TTAIL
  5066. Help UpEXTI
  5067. ddata
  5068. bbbbb
  5069. bbbbb
  5070. bbbbbbbbb
  5071. xxxbb
  5072.     Help DownEXTI
  5073. ddata
  5074. """Mooo
  5075. """Mooo
  5076. """Mooo
  5077. MMMMMMMMMMM
  5078. HelpSCRP
  5079. on mouseUp
  5080.   global myBusy  
  5081.   show bg bitmap "Help Up"
  5082.   hide bg bitmap "Help Down"
  5083.   set cursor to myBusy
  5084.   lock screen
  5085.   push this card
  5086.   go card "Help Card"
  5087.   unlock screen with visual effect scroll down in 30 ticks
  5088.   set cursor to Browse
  5089. end mouseUp
  5090. on mouseDown
  5091.   show bg bitmap "Help Down"
  5092.   hide bg bitmap "Help Up"
  5093.   repeat until the mouse is up
  5094.     if the mouseloc is within the rectangle of me then
  5095.       show bg bitmap "Help Down"
  5096.       hide bg bitmap "Help Up"
  5097.     else
  5098.       show bg bitmap "Help Up"
  5099.       hide bg bitmap "Help Down"
  5100.     end if
  5101.   end repeat
  5102. end mouseDown
  5103. TTAIL
  5104.     INFO
  5105. Quit UpEXTI
  5106. ddata
  5107. bbbbb
  5108. DDWIWI
  5109. fffffV
  5110.     Quit DownEXTI
  5111. ddata
  5112. """Mooo
  5113. """Mooo
  5114. """Mooo
  5115. DDWIWI
  5116. QuitSCRP
  5117. on mouseUp
  5118.   set cursor to watch
  5119.   show bg bitmap "Quit Up"
  5120.   hide bg bitmap "Quit Down"
  5121.   send quit to stack
  5122. end mouseUp
  5123. on mouseDown
  5124.   show bg bitmap "Quit Down"
  5125.   hide bg bitmap "Quit Up"
  5126.   repeat until the mouse is up
  5127.     if the mouseloc is within the rectangle of me then
  5128.       show bg bitmap "Quit Down"
  5129.       hide bg bitmap "Quit Up"
  5130.     else
  5131.       show bg bitmap "Quit Up"
  5132.       hide bg bitmap "Quit Down"
  5133.     end if
  5134.   end repeat
  5135. end mouseDown
  5136. TTAIL
  5137. >>:9:
  5138. ooooo
  5139. BtXXXXX
  5140. 2222.
  5141. os2"2>
  5142. Wxxt/
  5143. DCBE.lm
  5144. s\@@E
  5145. ososo
  5146. ojsi3jo
  5147. =>>>>
  5148. @oooso
  5149.  -Y-B-!
  5150. oojjlo
  5151. >=- >>2=
  5152. '?676
  5153. EE/ojjsj
  5154. FEsj@@
  5155. ojjoolqq
  5156. ljoso
  5157. \ojoj
  5158. olqmpj
  5159. @@lp@CBo
  5160. mlmps
  5161. ssoos
  5162. o/llC
  5163. ospso
  5164. C@@C^@
  5165. @@C^^
  5166. C@EC@
  5167. \\ojo
  5168. ooooplo
  5169. @@C/oo
  5170. @,oooojo
  5171. ooooo
  5172. ooo/o
  5173. oooooo
  5174. @qoo/q
  5175. o/oooo
  5176. oo@@@
  5177. @oooo
  5178. @@E@FEF
  5179. @^F@^^o
  5180. oojoj
  5181. jooooj
  5182. ]^@CE
  5183. @@@@@o//
  5184. E@@oj
  5185. oFjoo@o
  5186. /,ooj
  5187. ,npoC
  5188. !!!''?b!
  5189. n@oon@
  5190. ]\C@@C^
  5191. o@noo
  5192. o//Cqo
  5193. oooC@C
  5194. ojC@@
  5195. ojoFCEE
  5196. *oo3jso
  5197. ojjo/qoo@qo
  5198. ooooo
  5199. @iq/o
  5200. q^^qq
  5201. joooo
  5202. oo@oo/
  5203. oiloo
  5204. j3joj3j
  5205. @o@oo
  5206. @@@Fo
  5207. ,/@@C@
  5208. joojj
  5209. oojoo
  5210. ooooo
  5211. oooq@
  5212. o/@oo/
  5213. ojojo
  5214. ooooo
  5215. @oo,o
  5216. oooo/o
  5217. ^C@C/
  5218. oo@oo
  5219. ooojoooo
  5220. /@@@//
  5221. ojoooj
  5222. ooECoo
  5223. /,@C/
  5224. @E@@@
  5225. ooo/o
  5226. jojoo@
  5227. @F@@C@
  5228. @F@@C
  5229. oo/oo
  5230. ooooo
  5231. oo@@o
  5232. //C^@@
  5233. jo/oo
  5234. ooooo
  5235. @oooo
  5236. oolooo
  5237. F/ojj
  5238. /o,@o
  5239. /EE,E,
  5240. ooo/o
  5241. ,ojj//jF
  5242. FFE@C
  5243. o@@C/
  5244. ooooo
  5245. oEoCj
  5246. o@@C@
  5247. /o@E@
  5248. jjCoj
  5249. ojojo
  5250. oj@@Co
  5251. o/ooo
  5252. ,oooF@C
  5253. joooo
  5254. ECoooj
  5255. ok/,ojo
  5256. @ECo@
  5257. jj@@@
  5258. ojoFE@
  5259. @.@@@
  5260. ooooooo
  5261. Coo,@
  5262. o@Eooo/
  5263. oojoo
  5264. ,o/oo
  5265. ojooo
  5266. o///@
  5267. oooooo
  5268. .@@jk@
  5269. jo@oj
  5270. F]EqE
  5271. oooCjo
  5272. FC@.@,@jo
  5273. ooojo
  5274. C/jC^E
  5275. @/Fjoj
  5276. E@oooo
  5277. jjoFF
  5278. ojoj,o
  5279. o,@@@Co
  5280. o@CiCE,@F
  5281. ooo@@C
  5282. ojooo
  5283. EC@oj
  5284. @ojo@o
  5285. joojo
  5286. oojoo
  5287. ^F/o@
  5288. ,j@/,j/ooo,oo
  5289. /@@Fo
  5290. njC/@FCE/,nj
  5291. oooooooo
  5292. j,/CE
  5293. @/joj
  5294. jojooo
  5295. @@Co/
  5296. @C/oooj/oo
  5297. @@ooo
  5298. ,oj,E
  5299. o,@ooo@o@
  5300. /TAIL
  5301. PupTest1SCRP
  5302. on openCard
  5303.   hide bg button id 2
  5304.   hide bg bitmap "Prev Up"
  5305.   show bg button id 3
  5306.   show bg bitmap "Next Up"
  5307.   pass openCard
  5308. end openCard
  5309. bitmap id 2data
  5310. |f||x
  5311. %)%)    
  5312. '*0:R    C
  5313. p:N    2\
  5314. &%))@
  5315. $!))    I!)I
  5316. `s9BA
  5317. \9.r@
  5318. H%)J@
  5319.  %%$R
  5320. PupTest2SCRP
  5321. on openCard
  5322.   show bg button id 2
  5323.   show bg bitmap "Prev Up"
  5324.   show bg button id 3
  5325.   show bg bitmap "Next Up"
  5326.   pass openCard
  5327. end openCard
  5328. bitmap id 1data
  5329. |f||x
  5330. A    "BH
  5331. $D %"
  5332. HJE) 
  5333. X    (BP
  5334. JBREIJ@
  5335. 9 R`c
  5336. "bp(' 
  5337.  INFO
  5338. PupTest3SCRP
  5339. on openCard
  5340.   show bg button id 2
  5341.   show bg bitmap "Prev Up"
  5342.   hide bg button id 3
  5343.   hide bg bitmap "Next Up"
  5344.   pass openCard
  5345. end openCard
  5346. bitmap id 1data
  5347. |f||x
  5348. A2AVg`
  5349. %%$RR
  5350. "INFO
  5351. Splash bkgndbkgd
  5352. oCARD
  5353. The PaletteEXTI
  5354. ddata
  5355. 3TAIL
  5356. #INFO
  5357. Splash cardSCRP
  5358. on openCard
  5359.   global currentState, myBusy
  5360.   if currentState is empty then
  5361.     set cursor to myBusy
  5362.     play card sound id 193
  5363.     lock screen
  5364.     go card "Main Card-1"
  5365.     unlock screen with visual effect iris open in 60 ticks
  5366.   end if
  5367.   pass openCard
  5368. end openCard
  5369. field id 4data
  5370. 5TAIL
  5371. field id 7PROP
  5372. read_only_test
  5373. 123data
  5374. Telemark's Guide to DogsTAIL
  5375. #INFO
  5376. bitmap id 35data
  5377. 6bbIHN
  5378. M00bzI0
  5379. 0z6a1HHIHH
  5380. a]H]b
  5381. bHzbb\I0H
  5382. ]vvvvvv]]
  5383. ]v]D]]]D]]]]]DD]]DDD]D]
  5384. ]D]]]]]]]]]]b]]a]]Dvv]]]v]vvv]v]v]v]]]v]]]]]v]]]]v]v]]Dv
  5385. ]]D]D
  5386. DDDDDDDD
  5387. lb2b2Np??
  5388. <>{/QRe
  5389. T2^.Pm
  5390. S,Ym|
  5391. %54%3
  5392. *7-c0
  5393. ooZ~@X6Y^
  5394. %$72$
  5395. ++++++++
  5396. SS]STSSTSSTKS
  5397. SZS]SZTS@]
  5398. ]SSTt
  5399. ZSSYT.]
  5400. YTLTT]
  5401.  SSS 
  5402. ]bIIuI0
  5403. bH00zNzbab
  5404. zbbfbz
  5405. zaH0Hab
  5406. zaaHb
  5407. vvvv]v
  5408. ]v]DD]]D]DD]D]DH]D]]1\]v]DI
  5409. ]]]]]]]]v
  5410. ]]v]v
  5411. vvv]]v]v]vv]v]]E
  5412. ]]Dv]
  5413. ]]DD]]D]DDDDDI]
  5414. -v[-,
  5415. B{-C-
  5416. vB3u[
  5417. V0,\Uxx
  5418. /VWY,
  5419. u.Z/Z.Z.
  5420. n~k67
  5421. ?;772b
  5422. 6f6>;?
  5423. ^+3+G+
  5424. ^+++^+
  5425. GZ]GZ
  5426. SZsZSZ.Z
  5427. ^S S^S sS
  5428. -uwB-
  5429. vVBVv-
  5430. -VvV.-
  5431. -.,B3[
  5432. EZ0\[B
  5433. &SxSZu/
  5434. ]]Ts]ST 
  5435. sSSS 
  5436. sS]S 
  5437. Z[[-ZB[
  5438. .lw..
  5439. Zx[-B{vV
  5440. VxxP{)x?-}.
  5441. ++S?W
  5442. uCZuuW
  5443. Gu2^u
  5444. +^?++
  5445. urrG!
  5446. ZtTT] 
  5447. ]2122212122
  5448. ]2E2IJ12IJ
  5449. I2]2I
  5450. I2v1JIJIc12
  5451. D1I2D
  5452. D1IJI
  5453. bIIb2Ibbb
  5454. 2D112b1D11DI0bb
  5455. bbzbIz
  5456. zbzav
  5457. vvv]]v
  5458. ]D]]]]]]D]DD]DDD]DDDvD0]DD]]D1]DI]]
  5459. D]D]D]
  5460. ]]v]]v]v]]vv
  5461. ]]]]]]DD]D]]
  5462. vDD]DD]D\DDDD
  5463. I21JE12vJ1I1
  5464. 1JI]2
  5465. I2v1J1vbJIJID1
  5466. D12IID
  5467. bgbbbvJbvIbg
  5468. IDJI]IDID1I0IDbbg
  5469. HazIzb
  5470. bv]vv]v]]]v]]]]]D]D]]D
  5471. IDDDDI
  5472. 1]D]DID
  5473. ]DD]D
  5474. b]I]DvI]D]]]Dv]]]]v]]]]]]]]]vD]]]D]]D]]DDDD1DDD
  5475. DDDDD
  5476. Ibbzvb
  5477. ]21E1
  5478. 122EI2I1J121J
  5479. EI22]2D
  5480. 2]J2]IJb2I
  5481. 21bbD
  5482. DI2I1D
  5483. |Nbbb
  5484. bwbbbbbI1]11vIIbDI6]II0IDzbb
  5485. vv]v]v]]]v]]]D]DD]DDD]DDH]DDDDI\1]D]IvDH]D]]]]1vH
  5486. v]]]]]]]v]]]vv]vv]]]]]v]D]DD]DD]DD]D
  5487. bbvIvI
  5488. ]21E121E
  5489. ]J1E2J1J2v
  5490. DI21I2vb2I]2
  5491. ]21I#
  5492. IIbIbbb
  5493. bcvcID21]I
  5494. HIIbbbDbbbbb]aIIbbzbb
  5495. z]H]0vbzz
  5496. DDDDI]
  5497. D]IDDDDuDD]]]]]vb]v]vEv
  5498. ]v]]]]]]
  5499. D]D]]DD]DD]DDDD]1DDDDDD
  5500. D11D\
  5501. 6DHDu6DI
  5502. [E\-E\3
  5503. {tw{{
  5504. [B{{o-Z
  5505. oxCxY
  5506. ZGZZGZ
  5507. S@SSSS
  5508. LLTS T-S
  5509. SS SS
  5510. ]SS T@
  5511. ZYSST
  5512. SSSSSs
  5513. ZE{[-B
  5514. B-.v{V
  5515. o{,[[
  5516. xv{x{*<
  5517. NS{Bv\?
  5518. >x//+
  5519. *+?3,
  5520. ow77X
  5521. +u+++
  5522. r/]ZG]
  5523. SS   ^ 
  5524.    SS
  5525. Z^]SZSLLTY
  5526. SSSSSS
  5527. SS TS^ZZ
  5528. y2a(W^ZTSS 
  5529. S S/KWu5ZJ/
  5530. +-l0x
  5531. HWYW21
  5532. YuYZBBE
  5533. +&+|ZM
  5534. cIDWVZNbbb
  5535. j3PK*Q
  5536. .S^]S
  5537. urCxa
  5538. bIIJD
  5539. IIbIb
  5540. bbIbD]gDII
  5541. bHH10C\
  5542. HC0HbHvva
  5543. vvvvvvv]]v
  5544. DDD]DDDDDD1DDDDD
  5545. ]1]DDD]DID]DD]]]]]]]]v]E
  5546. ]]]]v]]]]v]]]]D]D]]D]D]DDDDDD1D
  5547. 0babzIaD
  5548. I]bID1CD
  5549. cI1I12
  5550. bvIII]II1
  5551. zIIDaHIIIaHb]bIz6I
  5552. IHbzb
  5553. uIH0\0
  5554. vvvuvvv]vv]v
  5555. ]]]v]]]]D]D]1DDDD1D
  5556. ]DDDDDD]]D]]D]D]]b
  5557. v]v]]]]]v]D]]]]DDDD]DDDDDDD
  5558. D1I1IDDD1
  5559. bII2III1
  5560. b]IIvzba
  5561. vII]aD
  5562. u1vbzIbbbz
  5563. IuaIa
  5564. \HHCHH
  5565. v]]]vDvDD]]]DD]D]DDD
  5566. DDDDD0D1DDDDD]]DD]DD]]]]
  5567. vuE]]v
  5568. E]]]]]]]v]]]]]]D]D]DDDDDDDD
  5569. (%J1P
  5570. (1)(<b3K]=Kxr
  5571. ^+22+G2
  5572. JuGZG
  5573. uGmZ2
  5574. +G2(3
  5575. S]SSSSSSLSLS
  5576. TSSST]
  5577. ]SGST
  5578. SG ]sT STL.S   S
  5579. ]STS  S
  5580. utCuZS
  5581. /ZZSS
  5582. bbI^1I
  5583. I]abHHvIbbbzbb
  5584. aH]0bHzb\I
  5585. vvv]v
  5586. ]]]]]]
  5587. DDD]]D]1]
  5588. DDD]DDDDD]
  5589. ]I]D]]bD]D]]]]
  5590. Ev]]v]]]
  5591. ]]]]D]]D]]D]DDDDD
  5592. DD1DCDD
  5593. "IzbHD0
  5594. vba]IbbabIDD1D
  5595. bIIDI1
  5596. bbIzIaI
  5597. Ha00]H
  5598. aDbua
  5599. bzIaI
  5600. vvvvvv
  5601. vv]vv
  5602. ]]]]]D]]D
  5603. ]D]0]
  5604. DDDDD
  5605. D]DDID
  5606. ]]]]]]]]E]]]E\v]]D]E
  5607. Dv]D]]]]]]]D]]D]DDDDDD
  5608. \1IuD
  5609. IIz11D
  5610. bzzbbabID1
  5611. .Vo.Z
  5612. +++F+
  5613. GLtTS
  5614. 3tSTYTSS]SS^ SSLS
  5615. s    S  
  5616.  TSSTT
  5617. ]BlJ1uT]!
  5618. ZBtL]
  5619. ]^T@TT
  5620. S  SS s
  5621. C^u2ZZ/
  5622. rDaSJS
  5623. S ?SR
  5624. ?G]ZZS
  5625. Yt]S]
  5626.   S  SS 
  5627. SSSSS ST]S
  5628. ]l2GZZ/
  5629. bI2]2]
  5630. 1DID1DI]IIvb]bbb
  5631. vvvvvvvvv
  5632. b]vuv
  5633. vv]D]D
  5634. vDDDD1
  5635. ]DD]DD
  5636. DDDDDDDD]DDD]D]D]]E
  5637. v]]]]]]]]D]]DDDD]]]]DDDDD
  5638. Da6Izba
  5639. IHD1b
  5640. I2I212I
  5641. 11I0b
  5642. babvvzba
  5643. v]vvv
  5644. vvv]v]]]]]DvDDIDD]DDDv
  5645. DDDDDDDDD]]]D]]v]
  5646. v]]]]]v
  5647. E]DD]]]D]DDDDDD
  5648. DDDDD
  5649. ulx2/uYm*a
  5650. ^3uF]
  5651. BGZGZ
  5652. S- S S 
  5653. R Tt]G(
  5654. ]^SSsS
  5655.  - SL S    S
  5656. /]T l
  5657. ]SSSS
  5658. ^  S^SS
  5659.   ST^
  5660.    SS
  5661.  SS   
  5662. S  SLS
  5663. E3EDDE
  5664. [ZuEZu
  5665. j|S|GxtW
  5666. ++++++
  5667. GZGGZZ
  5668. ]]]ZSSSSS
  5669. SSSSs
  5670. TSS]SSSSS
  5671.    SLS
  5672.   LS  
  5673.   S    
  5674. SS  S
  5675. ,S+:2
  5676. 7b6~a
  5677. ]u3^+
  5678. SSSSSS
  5679. ST ST^
  5680. /y3/yS
  5681.  S S SS  
  5682. -u.VW!
  5683. u,.[/V.
  5684. ///!!
  5685. =!    TW
  5686. Z//!>
  5687. ,3\Y(yv
  5688. TSlS\&]y"
  5689. +a?*2>
  5690. tGWG2GG
  5691. SSSS s
  5692. SSSSS   S
  5693. SS  T
  5694. ]BZSS 
  5695. R     SSS s
  5696. E122I1
  5697. E212III21111
  5698. 11I2IIbcbIIJI1
  5699. 2IE1bbbbbv
  5700. bbbbIIcbIbbJvI1DIEI
  5701. III11IIDD
  5702. IIbIzbva
  5703. ubvv]]v]v]v]v
  5704. ]]]]D]]]D]]ID
  5705. ]DDDDDD
  5706. DDD]1]D]
  5707. DDDD]D]]v]^
  5708. ]ED]]DDDDD]DDDD]DD
  5709. DDDDD]DI
  5710. DHDDDHDD1
  5711. 01\IM01
  5712. 1aabfb
  5713. ,,-Z-,-[[---[.w
  5714. -lw.{C,
  5715. .u/.-Zu.{,
  5716. DE.EZ[B[V-
  5717. Zu,ZW
  5718. 2XaI6
  5719. sSLS ^
  5720. ".TxK
  5721. ({j&j
  5722. bbD1I
  5723. IHHC00IIb
  5724. gzNaNfaNIzaIIIDJI
  5725. DvbJv21]6
  5726. 1Iabz
  5727. ]]]]]uE]
  5728. DD]]]DD
  5729. DDDD1DDD
  5730. DDDDD1
  5731. DDDDDDDDDD
  5732. DDDDD]DDD]DDDvD]]E
  5733. ]D]]E
  5734. D]D]DDD
  5735. DDDD1
  5736. D]D]0DI
  5737. ]DDDH\DDID
  5738. 61001
  5739. "IMa6aI
  5740. 0I0HH
  5741. Mb6a6HI11DI]]b|
  5742. vbbv1Icb
  5743. bvvvv]v
  5744. ]Ev]v]]
  5745. ]]]vDDDD]DDDD
  5746. DDDDD
  5747. DDDDDDDDDD]DD]]D]\E
  5748. vD]]]]DDD]DDDD]DDD1DDvD1
  5749. 0DD\D
  5750. D1CDCD
  5751. 0I56az5H
  5752. YHzzN
  5753. 2by|K)Q
  5754. J8T&    Gr
  5755.  1FLiI
  5756. o7|7o7[L
  5757. GGZGG
  5758. G/@ZG
  5759. Qk|>q
  5760. fz6azab
  5761. zINH]IHI0Ha
  5762. zHH6zMbzbbII1I
  5763. cv^v]]
  5764. b]vv]v
  5765. ]]vD]DD]D
  5766. ]DDDDDDDCD
  5767. DDDDC
  5768. DDDDD
  5769. DDDDD]D]DE]v
  5770. E]]D]D]DD1]
  5771. D]1DD0]D0]D]
  5772. H]D]\1DDD
  5773. 011H#a#`1
  5774. Ozaz6
  5775. 2\I0P
  5776. u@xlS??
  5777. u{&&03T
  5778. ok7IX
  5779. 7H~ar~7~
  5780. #KMxk7
  5781. 2$666|6
  5782. 6n@o7
  5783. TTS@STSSs
  5784. s -S  ^]
  5785. ]AL SA
  5786. P<69f<
  5787. 3SV>xyu
  5788. ~>p@YA>3)H
  5789. 7YYno6
  5790. G+^+^2G2
  5791. uZZZGZZZG
  5792. ZtZG]Z
  5793. Z@ZG]
  5794. SSSSSrL
  5795. /u3]/
  5796. .Z3ts]
  5797. ,:Y?x
  5798. ngS/n
  5799. 04<2Sz!UUl
  5800. zyxFo77
  5801. 27IOHO
  5802. b3+a^
  5803. ZZGZ]
  5804. !-E-P
  5805. 26~~$
  5806. ~Ycrc
  5807. 277nYI04
  5808. #:204
  5809. S]]SS
  5810. SSS SS
  5811. 2-<kb
  5812. 7.7no
  5813. %:202
  5814. ]ZZZT@
  5815. GZ^G2G
  5816. aJaJ^+^^
  5817. ]SSSSuF
  5818. cosw2
  5819. (,Jxx<W2-
  5820. ZG/]Z
  5821. 6~.co
  5822. 2484 1%#
  5823. 6777o
  5824. r+%|7>jY
  5825. >l[3B
  5826. HHk66
  5827. f<6>4
  5828. @l-%414:77o6
  5829. ZGZZZ
  5830. G2GuGuGlKlG2
  5831. SSSSSTYt*
  5832. ,ZYtB
  5833. SSSL].
  5834. 7o?wb1m$
  5835. 4<140
  5836. 7Y7777
  5837. 44:$c
  5838. 7oo\2
  5839. ,!TZZ
  5840. 42<y2*
  5841. zv66Y6
  5842. {124>
  5843.     #:2>
  5844. ZGZZGZZ
  5845. JGuGZG
  5846. ^lG+^J2^^&^aJaJ
  5847. T@L]S]
  5848. SST^ZA
  5849. To76Y.
  5850. S]SrZTsB
  5851. L>^oT77
  5852. /AZ+^7l
  5853. 2$7$z!:cvr<-2
  5854. 67676
  5855. ZGTTGZ]ZS
  5856. Z]ZGZTG
  5857. luJ&^+
  5858. STSZ^Mb
  5859. ~'zW2
  5860. /ZoYr
  5861. N1! 4
  5862. 6oI*o/
  5863. S?h"S
  5864. 6TI~I
  5865. 28%96<
  5866. u@Zuu
  5867. ZuGZZ
  5868. !GZ]TG
  5869. ZG2uGZ
  5870. uu^^+^^^
  5871. TLx|!+!
  5872. sT]ZxY%&2
  5873. 7Y776
  5874. |y6,q?
  5875. zzbab
  5876. DII2]bb
  5877. IEI]Jb
  5878. 1Ifbz
  5879. Iav]v]]
  5880. v]]]DDDDDDDD1DDCD
  5881. DDDDCD
  5882. I]]H]]
  5883. z6zbzabb110
  5884. 1"#H"I
  5885. ND1I11IIb]II
  5886. zbDHbbb
  5887. bb2bbbbc
  5888. bbbI1\
  5889. I]]]]]]]]DDDDDDDD
  5890. 11CDD
  5891. DD0v]D]
  5892. Iv]]D]
  5893. D01Hbz
  5894. bbzNabbzabaH
  5895. Ha#a"
  5896. %40'~<44
  5897. <406Y
  5898. 4<%512
  5899. 0626k
  5900. +*v++
  5901. o*Yo/
  5902. m2CG^J2
  5903. uu?^au^
  5904. +^^J?^
  5905. uGZGG
  5906. ]ST3ryRK
  5907. VXS^ 
  5908. S]],]2B
  5909. 2LTZSt]Z-
  5910. -    yBBC?
  5911. Nz08 %<#
  5912. %<#<44
  5913. 12415
  5914. J+Y/3R
  5915. xyJ./xJ||
  5916. &|x/G//!
  5917. @\~^^
  5918. GZZZG
  5919. ZGZGZ
  5920. ^G2<G
  5921. ^au+^au
  5922. S*Uqrx
  5923. r3T]SJ
  5924. !qrSSSS 
  5925.  22|Y
  5926.     V~J3|y
  5927. TY.ZTT|T/R
  5928. /r4rnc
  5929. nc!cc]^ow
  5930. TYZSTGTT
  5931. u^aa2
  5932. GG2ZG
  5933. SYB]y
  5934. s SYG
  5935. %J2tt
  5936. r]T^T
  5937. NT4#_
  5938. +**u<T
  5939. Y,+xxT
  5940. +<PI'2:
  5941. P.olA
  5942. GuG2uG
  5943. GlGGu
  5944. ^^+Ga^
  5945. ^^+^a+u^+^+^J%
  5946. ]SsZ-P
  5947. yyV]  X
  5948.   sS,
  5949. K(JJGtG
  5950. 2tuZYYuYV
  5951. 2Vf|y
  5952. 1Uo4c
  5953. 4?1<414
  5954. y#2# YY7
  5955. ~a6;6
  5956. )sY.3
  5957. SZ]SZ]
  5958. ^^^?^^
  5959. ZSS]STY
  5960. XXSr 
  5961. BGSTSTtl
  5962. ,?=gTxk-
  5963. 4111406
  5964. 7,.]B
  5965. y/!/I
  5966. LPVxyx?
  5967. 6{Yo7Y3
  5968.  GTTSZZ]uGZGZ
  5969. mh^^luG
  5970. a(^*+
  5971. G]]]G
  5972. SST^TSSY
  5973. ]STt)
  5974. ECX(uuN
  5975. ]rrCA
  5976. NC+7.
  5977. ZGZZ2ZZZZ
  5978. SSZ]S.TST
  5979. G^l^a
  5980. ]S^TT
  5981. r  YVR%(xb
  5982. 214%:2$
  5983. #nr,I
  5984.  x,PyuXS>
  5985. +K(Z//DM
  5986. /+,x)y.
  5987. '6oo7
  5988. WZTZZ
  5989. 40144<
  5990. STS]]TSS]STTSS
  5991. GZ22GZC^Z^uGZ
  5992. 2^?G^>^
  5993. GGGuGG
  5994. ]S,YL
  5995. 2yWbx
  5996. ,! ^ 
  5997. S2]AZ
  5998. ,U,x(
  5999. 1>1491
  6000. 4>4411
  6001. *4STW2(P
  6002. LZ/uU
  6003. tyP((
  6004. 6'T6b76-0
  6005. 7@(+S
  6006. bop!p
  6007. 2@^Y.
  6008. GZG^Z
  6009. TSTS]TS]STSSSSK
  6010. ZGZuG
  6011. C2^ZGu
  6012. 2aJJu2+
  6013. ^au^^&
  6014. ]GTStTSS
  6015. @^AZY+7
  6016. <?J.mVyBL
  6017. :T3:b
  6018. ccp74
  6019. ~sIbs
  6020. V<R++
  6021. c?,c3T~
  6022. Z]u/]G
  6023. ZS]ZS]ZTSS
  6024. YTSSTSS
  6025. GGZGZ
  6026. ^tGZGlGJ2
  6027. &auJ^^2Ku
  6028. aaJ^G
  6029. TT3TT
  6030. yyxUy!s 
  6031. 62<4;44>4<R4Nbs
  6032. b$C!p
  6033. (xW!/
  6034. e(((()
  6035. 7+X7Y~s
  6036. ++2F2
  6037. 22J^C
  6038. GP^?2+
  6039. ^%u2J^^J
  6040. lGJG^J^
  6041. TG T]S
  6042. ATX s
  6043. yyy(~
  6044. yy].XSs
  6045. S^T2b+
  6046. M@N_cA
  6047. :R124>>>4
  6048. +rC#]sp
  6049. }LW?k "
  6050. ZD[EE[EuB
  6051. >(mAy|
  6052. 4449H
  6053. TTZS]ZS
  6054. S]ST.]
  6055. LSZB]Z]
  6056. Zr2ZZG
  6057. ^uu^mGGmJ^2^JJJ<?G^
  6058. GJ^G2
  6059. 2ua^^
  6060. TSSSS
  6061. T].,YL SS 
  6062. WVUYs
  6063. Run: 
  6064. ;!:q~Kx
  6065. E[3ZE
  6066. qQrz<
  6067. GZGZ@u
  6068. ^GuG^+
  6069. J^+K+
  6070. x^^22l^u
  6071. l^/2x?lFx
  6072. S%rq?S
  6073. %:k~1
  6074. 1514:44
  6075. +fL+f
  6076. %ZZ[[wBE[ED
  6077. &WuE!E
  6078. ]STTSS
  6079. TS TSTS
  6080. 2^Kl2G
  6081. 2bG+l^(
  6082. a^GlJ^JJ^Gl^22Gu^G2
  6083. SSS]SZ
  6084. lD??lm
  6085. )u]  
  6086. /+Vk    
  6087. .7..3
  6088. 3[[E'
  6089. #0544
  6090. Z]S]T]SST
  6091. TS TSY
  6092. GCBGG
  6093. GGuJ2
  6094. lGJG%GF2
  6095. 2^^2JC
  6096. GuGGu
  6097. G^^?^^
  6098. ^auJ+^JG
  6099. ]ST^STS
  6100. S SST]
  6101. ,yyyyx
  6102. bfz6zaz#aa65aN
  6103. D]E]2]bIbaIzb
  6104. cbwvb2]]v
  6105. Dbbbvbb
  6106. aI]vvv]]]]]]]]]D]DD]D]DDDDDDD
  6107. 1CDD1CD
  6108. \DDDD1\D0DDHD
  6109. 1]0]H
  6110. ]v]]]
  6111. 1010101HIIab6zbbz
  6112. vbDIID1111]Ib
  6113. Ha#H"1"H"I
  6114. 421!7
  6115. }){(7
  6116. }%Vb(+
  6117. HzI~X6
  6118. +@\frr
  6119. x+lCf|,
  6120. xHHNH
  6121. z3t(+^+
  6122. SZ.ZT.S
  6123. SuTST
  6124. +(^2^
  6125. 2Gl^J^
  6126. u2Z2G
  6127. rZ]@TT
  6128. YS]SS
  6129. ,X,@y@
  6130. +%%+C&
  6131. Nfz6zIMaIzNzz
  6132. zNzaI011
  6133. ]IDIHbabzb
  6134. wb^v2]J^Ivb
  6135. IbHv]
  6136. abzbID
  6137. 1I]66
  6138. vu]E]]]D]D]
  6139. CDDCDDDCDDDDDD
  6140. \]0DD
  6141. D\DDD]
  6142. 1\IIIIaba
  6143. bbzbN
  6144. b]1]IbIbab
  6145. bbbau6HDDHIH]zIaa6a6Nu6aI#
  6146. aMa5NaNa
  6147. zba6H10
  6148. D1D1DIHbub
  6149. 2^v^]bvI
  6150. ]]aIzz
  6151. DIIDzN
  6152. bIaI11D6
  6153. av]]]
  6154. ]]]]]]]DDD
  6155. DDCDC
  6156. D0]0]DD]I
  6157. 1\DDD
  6158. \1\D1\D
  6159. ]]a]vv
  6160. I]\1]
  6161. 1D0]0IIbbz
  6162. bbabbzNb
  6163. Ibabb
  6164. Nzb6a]IHIabIzbabbabzaNIHIHH
  6165. gMaaf6MMH#H6a6zaIMz6z
  6166. bzIHI0#
  6167. D2D1D1aDab
  6168. bEbv2]E]
  6169. bazIaz
  6170. IHbzz
  6171. #azIH
  6172. 11IIIzbbIII
  6173. bv]]]]]]]vE
  6174. D]D]D]]D]
  6175. DDDDD
  6176. CCDD0DD
  6177. D]D]]]
  6178. 1D0HvbI
  6179. bvbzb
  6180. NzbaaIf
  6181. babzzbf
  6182. bzIaI0
  6183. za#I5I0I05a6aIzNz
  6184. D1DDI6ab
  6185. IvI]E]EN
  6186. bzbaHbzbaIuabuHIIH]H6zz
  6187. "H6zbI1C
  6188. I1zIbzNzHI1
  6189. 66azNab
  6190. a]]]v]]]]D
  6191. ]DDDDD]
  6192. DD0DD
  6193. uDDD0D
  6194. D]]v]DI\vvDD
  6195. bfIababbbz
  6196. TWWW34
  6197. (yk.<
  6198. v[[[u
  6199. <)W(k<
  6200. !]Nb_A
  6201. Z]ZS]Tt.@BSZ
  6202. 2C^&^^?uu^G+^+^2J*++
  6203. G^t2G
  6204. ]TYTS
  6205. YBJF?
  6206. |(kkTk}kTK(L
  6207. (33~y
  6208.     x7)L
  6209. Wy)@>tkb/33(V)B(P6*,
  6210. kB,y(
  6211. WRjyy
  6212. ll!NbcB
  6213. @TT@LTt]
  6214. .TT]]
  6215. ]G/GZG
  6216. uZ3Z_Z
  6217. @LTGF^
  6218. @^ZGm*2uC^?
  6219. a2u^^+^u
  6220. CtGZG
  6221. STSSTSSSS 
  6222. fzz6M5Mz#6MH6zI
  6223. babz6I1"
  6224. "abzbf
  6225. z6zNzMzb
  6226. Nz6a6az
  6227. D2D2D]
  6228. D1I1a6MIaI1]1
  6229. baIz6HH
  6230. Ha5HfIzbMHIa"0I5
  6231. a5a5H"
  6232. 1"5H#I"aHH601Izzzbza1bbzb
  6233. fbzNbM1aba6
  6234. ]]]]]]]]D]]D]]
  6235. D\]0v
  6236. ]]]]v]
  6237. 1C1\]HI
  6238. gbzbz
  6239. bz6]HD
  6240. gMIMHaN6HazbzMzb
  6241. bbabzI0
  6242. z6aNzMbz
  6243. Nz6z66
  6244. D2DED
  6245. 110HbHbzMIHHa5
  6246. HIaHI"0I"""00"5
  6247. I"0"6aIbzz61HIabzbbab
  6248. IHbv]]Dv]]]]
  6249. v]]DD
  6250. ]1DDD
  6251. DD1DDD
  6252. DDCDC
  6253. \DDDD
  6254. DC1CD
  6255. 1DDDH]]]v
  6256. v]]vDI\]
  6257. I]IvI
  6258. INzabHv0
  6259. '<KGj
  6260. +2AgWG/
  6261.  (gPQ~LSCx9
  6262. T???-
  6263. jCk+)W
  6264. (&kr|
  6265. Hp027
  6266. @IzHB
  6267. WSSRZ
  6268. /GZG2GuGGG2
  6269. 2GG22
  6270. 22G32
  6271. vlG^^
  6272. +?2*u
  6273. x)!YrL
  6274. 6>47"
  6275. }PKW7n
  6276. 7Y@.7Y
  6277. TJ/BL|/,m
  6278. eLK(4
  6279. \Ty|Q~
  6280. ..Y@@
  6281. ZGu]Z
  6282. 32G22G
  6283. 12Gl^^^J^
  6284. u+au+uu
  6285. >*?uuu&J
  6286. ST]SSSS
  6287. SSS^S
  6288. AAon7o
  6289. DyWrL 
  6290. &7<>45<
  6291. Crr2w.
  6292. WL},B73(
  6293. q*Y~ ,
  6294.     !-kxkT~W
  6295. bs2r0
  6296. 7^NNNs
  6297. ZGST2]
  6298. SZGZ3
  6299. ^?au+a
  6300. 2Z@ZG
  6301. R SSuZk
  6302. l/AAI@+
  6303. umXB^T R
  6304. fm{mz
  6305. O/WW/
  6306. L4L4({L3x.|x
  6307. C>V>    
  6308.     jr$(6
  6309. Z{loA,
  6310. ZZGZS
  6311. TtuG]ZGZ
  6312. u]GZGZ
  6313. GJJ+^*
  6314. ^aGuG
  6315. Z]SZ]
  6316. ZSSZSSSS
  6317. S  SS
  6318. 7+l6+Y
  6319. n]oNP+Y
  6320. ?(yZrL BYYTRS
  6321. t  S S
  6322. Y*ccCo7Y@7
  6323. +Px++
  6324. cnlqcb^w
  6325. (WBW~3CW
  6326. lllo-^cscNs
  6327. Gu^u2G
  6328. SGS]]
  6329. ST]YY]
  6330. u?<uuJ&Gm
  6331. ]  SS
  6332. 0wll+Y7
  6333. t3ST^T^ S
  6334. fO/S.,~O
  6335. y,]a]C
  6336. \pMO.3
  6337. 4PWjx|}|
  6338. WW,O//
  6339. /j(y|WK/
  6340. GZSG]
  6341. ZSG/GBZ
  6342. ^T]]L
  6343. S SSS
  6344. ]ST]S.TS
  6345. S SBht
  6346. {op@Y
  6347. xRGSrZGYZYqY
  6348. {_1~6n
  6349. x<*+(
  6350. (W(k%k
  6351. xLWW~
  6352. _]r@.
  6353. +u<^aG
  6354. TS]SST
  6355. SSSSSS]SS]
  6356. SSS]CuR
  6357. 2#3{1@n
  6358. 2YZLm
  6359. P*<+dalW
  6360.     j}V$$
  6361. rlclY
  6362. .X3@.
  6363. lnoCl@N32
  6364. rTx-    ,?(
  6365. 3W(WAy
  6366. {!p^@
  6367. ./@07
  6368. b$4N~Y7
  6369. 2ZZSG
  6370. ZGumGG2u
  6371. ^uaJ^G
  6372. /]GS]]SSS
  6373. a&JJ5
  6374. a2rZB^T(
  6375. 3I@KES6,m+6(|
  6376. 3s7Y2]IY6
  6377. +TWqT|d^
  6378. nqx,+vB!
  6379. ^or6soq
  6380. GGGZGG
  6381. ^222l^2
  6382. ]]/@/
  6383. J2&^+
  6384. +^&GyG
  6385.    XT
  6386. CxP*<
  6387. LaWl5K
  6388. 0    :fR
  6389.     (W~j+    
  6390. T?++&
  6391. @+@osI
  6392. 2r+Zs/[
  6393. 4TX,!
  6394. G222Gu
  6395. ZGuG2
  6396. GmrutG2
  6397. ^?^JJG
  6398. @^Z^Z
  6399. TS] SS
  6400. ^STt]
  6401.  S-SS SU
  6402. ttC/y
  6403. ncNo7
  6404. 7kyzP
  6405. W(Wx/
  6406. xL,YxK
  6407. /e+T]|]
  6408. YV&P3OQ
  6409. ZZGZG
  6410. ^uGGl2@Tl
  6411. SSTr @T
  6412. TYsWu(y(x
  6413. u|/B,
  6414. +^jC7
  6415. X@.A^N-
  6416. ].C@j
  6417. .oAc1Y
  6418. *L~WW4/W
  6419. P,k+fx
  6420. @o2rbo
  6421. ZGtuGZ
  6422. ZGGCC^
  6423. Z2GtG
  6424. G2Gu^>J?v
  6425. u+(aaaJ
  6426. ^u2Gu2
  6427. Z@tZtZ]]
  6428. .TS]S
  6429. SS SST^Zus
  6430. xy(x)
  6431. ,%PuBr
  6432. @.@@^C+0nm.k}
  6433. ].>1-I1Y
  6434. 4WW~K/
  6435. !k.,jd/
  6436. Gu2GZ
  6437. BZGtt
  6438. ]G]]SZ
  6439. J<<u<1?*
  6440. ZuGBTAZ2Z@t
  6441.  S!YY
  6442. YY6,KuSSsS
  6443. 244:#pOMY+
  6444. {'rC4r
  6445. nMNp6oY
  6446. yBPkLWC(1
  6447. lGuu^u2Gu
  6448. ZGZGGZZ
  6449. GZG^Gu
  6450. T]GZ]
  6451. >?+^a2
  6452. ZYTrTYtZG
  6453. G]]SY
  6454. SS  3L
  6455. rx^(&RS
  6456. oz~N{4353<
  6457. $0OUh
  6458. 3|7/L3{
  6459. ^u22C
  6460. G=++G
  6461. 2Jh^r^B
  6462. tGGZlT
  6463. ]!sJCyy
  6464. x2.Z3/l
  6465. $:CUIE
  6466. s3zi0
  6467. kAclo
  6468. WXk    ,
  6469. nwN_N
  6470. ZGGZuGZ
  6471. ((ua?
  6472. a<>u2J
  6473. tT_]BT
  6474. Y.ZYTJu
  6475. y2VZt,.]
  6476. B,T..!
  6477. $#4#    T
  6478. %2    ,~
  6479. nI^pNC^
  6480. Z#3%%42n
  6481. B^GGZGZ
  6482. /GYGZZ
  6483. mJ^*K
  6484. +u<<>
  6485. ^GZ]u
  6486. LZ]BBuSS]S
  6487. 23Tbn
  6488. 4:4%4#3
  6489. A}Y,y
  6490. on+o^N
  6491. ^op4#54
  6492. ZGuZG
  6493. Z]GZZ
  6494. Z]GtZ
  6495. CGGGGZ
  6496. T^T].ZT
  6497. VGTYZmdZ
  6498.  SSAC]
  6499. S  s(7
  6500. +rl0ZEux
  6501. xuZu/uuxx
  6502. .MccJ
  6503. <8T@.o6+
  6504. J22^J
  6505. _ZG/GZ
  6506. rY]ZG2]
  6507. ^<J>am>aJS
  6508. ,@]]r
  6509. Z-tt2WGVSTKL
  6510. #42%05824
  6511. kTyy|(
  6512. 44/JV
  6513. n10- 
  6514. rZ]u]
  6515. GtGZG
  6516. 2b?_aR
  6517. A!STSS 
  6518. ZmJ<r
  6519. SSS@/GJa
  6520. .7PrSS
  6521. 67nnr
  6522. //uE/
  6523. T^Cb-
  6524. 7@sY7
  6525. }/~3=%
  6526. 24<1#06
  6527. a2lBC
  6528. GZGuG2
  6529. 22A]G
  6530. 2G*J2
  6531. ^aG(^<Gm
  6532. S]S SZ
  6533. r,22Y!SSS  T
  6534. ^SSSr
  6535. SSS]/GJ
  6536. ZG/ZJ
  6537. 76o1r
  6538. %:<4%5
  6539. Z0//[EuZ
  6540. kX^c1^
  6541. WYk%>
  6542. 3/]Ig6
  6543. rGZ@ZZ
  6544. G2u^JJ^lG
  6545. 222GZ
  6546. GSS3SS  ^
  6547. T]]VT,,
  6548. SSS  Y
  6549. S STS.
  6550. ]S]Zu2J?*
  6551. T2:?+&'
  6552. 384%5%4
  6553. 9<21-4I
  6554. [VZ//
  6555. 7n@NI
  6556. +Q rl2
  6557. +j%<,
  6558. L4L((<
  6559. 2U]U!
  6560. ]TZGGr
  6561. G2G^Jl
  6562. uG22ZG
  6563. Gy_BmZGBB
  6564. J<<*u?b
  6565. t@ZGtZ
  6566. u,7/n.
  6567. ~~XSW
  6568. }BWK//
  6569. ZGZ]TGTY@
  6570. 2Z@TT
  6571. 2Glu2uu
  6572. BmZKGJJJ
  6573. ZBYrt
  6574. SS Ss
  6575. uEl?x??+[Eu
  6576. |6/]7TjU!|
  6577. ,Ck/,
  6578. ^2m2Glu222GCGGJ2
  6579. @ZuG2ZGZ
  6580. Gt^u2GZ
  6581. rBG2]
  6582. KGGB]
  6583. SZrJYSS SS - S 
  6584. S  S  R 
  6585.   S-S
  6586.  R  R
  6587. 60o7/
  6588. 0Z./uG?+
  6589. %}/j7.,
  6590. yy.(,
  6591. 2rSZ@
  6592. tZ^Gt2Gl
  6593. ZGGZu
  6594. Gu^tC2GG
  6595. 3Z3tZ
  6596. >Ja^(a
  6597. ZSSTrJTS
  6598. s s SSSs
  6599. S]SSZSSZ
  6600.  SSSS
  6601. S  S 
  6602. X]!/t+
  6603. 2ZZ!//0/l@*
  6604. uuu[v+
  6605. /UW~x
  6606. .0^Y+
  6607. %%<n2
  6608. u2^2a^2l^^
  6609. tG]m2
  6610. ^<J?><<u
  6611. *^GbJ<m
  6612.  sSS^T^SS S S
  6613. SSSTTSST
  6614. Y/7o^
  6615. yjjP4
  6616. Z2G22u2J
  6617. aG2^J
  6618. GCGJ22J2G@
  6619. Kr3B^Z_
  6620. YGBB2K5m^
  6621. h(<J?>
  6622. >^><K<2
  6623. tGBtr2S
  6624. SSSS^T
  6625. S^SS T
  6626. TSSS 
  6627. SS   
  6628. lYI6o+Y1
  6629. M@^]n
  6630. ZCul?
  6631. WS+Px    
  6632.  ]G]S
  6633. TZGtG
  6634. B^u2G2K
  6635. 2GG^aJ
  6636. G2GyuC
  6637. AZ_ 5_5
  6638. ]]-TAS]
  6639. ST YY
  6640. S]SSt
  6641. S^   
  6642. )><1%:-$s
  6643. o1llZ
  6644. ZZt2P
  6645. v+Do3(
  6646. w7~6@&S
  6647. >kWxkk
  6648. ,,+    1(
  6649. W$    /}j.,W$.
  6650. GBGZGt
  6651. lD2GG
  6652. Gla^J^u^
  6653. l^GJ^
  6654. uGuGZ
  6655. 3r]tYtB
  6656. Jbu*^
  6657. S]^Z^YY^
  6658. ]t.]]^Z]
  6659. ]S YYSS]
  6660.   S SS  S
  6661. uutZZ
  6662. Jk2ST
  6663. 3]IZ@
  6664. 7Y7IX
  6665. 2XB&X~N
  6666. |-3vm#!
  6667. :TJjD
  6668. uvWG21
  6669. Gu_2GuGG
  6670. G/G3Zu
  6671. @A]B]_/_C3l_
  6672. ^UGu@
  6673. !^BSr
  6674. s  S^
  6675. Y+777
  6676. o~,bNsY^
  6677. 4L(y]<
  6678. ,,TV%.r
  6679. WyyTWPy/
  6680. uGJ2^u
  6681. Z_y^u
  6682. GGBtG
  6683. ]SBBL]3u3
  6684. bJJbx^a
  6685. J2KYtZ]@L
  6686. L^TALS^
  6687. ]SSTL
  6688. ] T]SZS]
  6689. .S. ]-!^,
  6690. WuZ/TZ
  6691. uBTTmJ
  6692. (-83T
  6693. lll+]1
  6694. ,fee4W(
  6695. 3.$(/
  6696. xrVWW
  6697. >!=PV
  6698. kL(1+
  6699. Z_YmY
  6700. k2mGJ^l2uZlvZ^(J
  6701. lGm2G
  6702. mtJ_Jmt^%JJ22Ja_Z
  6703. SYYZ3]
  6704.  SSSTSS]T^
  6705. (Z5$n
  6706. 55e.l
  6707. ]Al_,n^
  6708. y    Py~
  6709. $yWyP
  6710. (~y!-
  6711. 2^22*
  6712. YGGlmZ
  6713. Y2uGGtKuG]Z3Z3ZG
  6714. !ALS3YYt.
  6715. ^T^ZY3
  6716. SS]SK
  6717. SS. S
  6718. SYY,,
  6719. YyxP+
  6720. v[Z[CE[
  6721. 0\An^n@
  6722. /TTW\
  6723. !X,j*L
  6724. !?.,Ck
  6725. \/PB\
  6726. !.T~(
  6727. (!    T<WK`
  6728. PGG2m^
  6729. lG^2G
  6730. GZYG22
  6731. GZGG]Z2
  6732. Y2mGu
  6733. BuJKC
  6734. tt3BB]
  6735. YT^Zt-BS
  6736. .]SSTS]
  6737. .TS]S
  6738. S,yyx+
  6739. (;Ccc
  6740. ~6777
  6741. x!JIe
  6742. 2.    2YP~
  6743. ,y|(LB
  6744. TY]<V
  6745. yk~L//
  6746. GtGG2u
  6747. GllGl2
  6748. tZ2mGm
  6749. G22GG2
  6750. .G/32
  6751. BttZmttYtlB]
  6752. TSSt.ALLSt3]t.Gt]Y,G
  6753. SSS]]S]T.sTTS 
  6754. ((%(xu
  6755. Z]KWf
  6756. y%n!D(,PE<7
  6757. @uuKG2
  6758. GPGGub
  6759. G2mZtG2ZtG2
  6760. ZGtY]JGY
  6761. Yt!@Z-
  6762. mSm]_
  6763. ^]]^]
  6764. - -Z t,tq2
  6765. y%FWxtR
  6766. Py*&"YUu
  6767. &|W*Q
  6768. >TYWu&*+
  6769. |uWG|
  6770. 77Y7.7
  6771. +uuEE
  6772. rV(/(
  6773. <>P{ky
  6774. ,,(|-
  6775. 3BWyk
  6776. uG3lu
  6777. 2BuGJ2GuG%u^2^
  6778. ZG2Zt
  6779. GGuGZ]
  6780. sYYt!
  6781. ZSS S
  6782. ,BLt.@
  6783. S]S ^
  6784.   ...-Y Y
  6785. )3onw:42    N7(Y
  6786. 6YY7oX/
  6787. uZEEE0EEEll
  6788. By,V\T
  6789. kPWkg(e
  6790. W(x,,
  6791. G2m22G
  6792. ]ZBGZ
  6793. t33Z^Z^
  6794. T]TSS-S
  6795. SS SSS
  6796. @/BLs]]
  6797. ]S^.t
  6798. .tYBYtu]
  6799. ST]STTS
  6800. Z-Y.,
  6801. onc223
  6802. Eprc~
  6803. 7Ao6oYooo
  6804. Z0ZEEuu
  6805. WWT|B
  6806. Y^>lo4$
  6807. uGuGGu
  6808. 2^^GJGl
  6809. ^hZuWGJJ^2t
  6810. u^BZ^2m2GtG2Z^
  6811. uGZGZ]
  6812. SRS  S^T.S]SS
  6813. S]SSSsTY
  6814. sYYBYY
  6815. 2YS]]S
  6816. ^! XS
  6817. WWWg":=
  6818. >Q7r(
  6819. 12S/1<S,i.%    2 
  6820. Tvgl(
  6821. Ty/$    
  6822. ]m6z$
  6823. u^^m2
  6824. u@Z@r]
  6825. GS]Tt@
  6826. ^3Z^Ss
  6827. t ]LT.]] 
  6828. UT.YyX
  6829. uhMhS
  6830. ?'.@7@.
  6831. )Vxy.$    
  6832. l$242
  6833. mGJJGJ2
  6834. lCu2^^m<
  6835. 3Z^]sT^
  6836. SX]TY
  6837. S SS ^S
  6838. SYtsST
  6839. s sSSKYs
  6840. r].]StT
  6841. ]].ST
  6842. V,yKk
  6843. TZZEZS
  6844. <&2+3RJaxJT
  6845. cUTnrn
  6846. 4+uZGx?
  6847. \,W22..&?
  6848. 7]1r2
  6849. ^tG2^y
  6850. aJJ2G^t
  6851. ZthGB
  6852. ZGK.u
  6853. S2TG]
  6854. 3T,]S ^SSSX]SYS Ss
  6855. S  S-
  6856. R  L^
  6857.  s -S S
  6858. S^ SSS]
  6859. s ^SSY^S
  6860. ,Z,,yyx
  6861. vZZxJ.?2xJC(>ka
  6862. !nn$!3
  6863. lIY6on
  6864.  ,k()%
  6865. /(~*~y
  6866. nonIC^bHI
  6867. mJJGh
  6868. mFuu2
  6869. GCBth
  6870. ]GBGZ@
  6871. sTL]^SsSs
  6872.  ?^  
  6873. ]SZS@ ]SSSS 
  6874.  SYs @]]ZYY
  6875. ] SY,SY
  6876. 7./ANc
  6877. luCDu[
  6878.     -7g{
  6879. cUrcT:
  6880. CHnk_o
  6881. +?rZxS&&S
  6882. +B?$+'
  6883. ,y?W(x-
  6884. W-uyV+
  6885. :X3vW*
  6886. yv/G2=Z
  6887. ll3G^l2b
  6888. yJ&_y^a5
  6889. GKGtG
  6890. m]tZu@Z]Z@Z
  6891.  sSSSs
  6892. 6    832
  6893. 3+3/()
  6894. 2<,22    
  6895. !?Y}T.f.<Tx
  6896. K2^21
  6897. ]T]@TS
  6898. LB!Y^
  6899. s SSS]
  6900. ] S  s
  6901. -S ^SSSS.TS]SS
  6902. BS]S]S!
  6903. r.s/^ ^ L
  6904. L3,V(
  6905. 3xZ[CEuTS
  6906. 63832
  6907. u[?'WZE/
  6908. (L~.T-6
  6909. u^yG^2
  6910. JGZmG
  6911. tuBGY
  6912. S sSSS
  6913. SSstS.STSSS
  6914.  STsST.
  6915. ]SSS Z^S
  6916. }clW[
  6917. ^Hqpn
  6918. :n(dxWB3y&CW
  6919. H+lO9vH
  6920. rss[*
  6921. 2G^^lK
  6922. +G3u^G2mG
  6923. ymYC2
  6924. TTLGS
  6925. ZS.^TS SSSS
  6926. JP)(3!
  6927. +(+ZWYT/Z!@x
  6928. uCYRO
  6929. <    .%-
  6930. n:g&T~d
  6931. Z{k(Y&.
  6932. J_ZxG
  6933. m/@YC
  6934. MS  RS s
  6935. sS]S.^]]]
  6936. TTTTT!Z
  6937. YYo|Y6
  6938. 66n6c7X6T
  6939. ^Zp!n
  6940. ~jB=<
  6941. #%-=-%
  6942. E|!xx|&yxU%2|V
  6943. *~.Lw
  6944. uB_uu
  6945. TTSSYSSR
  6946. .SSZ-SSZ^
  6947. !,UZy
  6948. Zo+B?
  6949. $pcn^b/3.
  6950. }V,    r
  6951. ?!Ty34
  6952. mGaGJ
  6953.  SYSSSTSSYSS
  6954.  SSSSs
  6955. ^ ^S^
  6956. S^T^^Z^SSSSY
  6957. .  .. .
  6958. 7NccsY
  6959. !^onc6
  6960. [[[EEE
  6961. iBlBi?+3
  6962. Jcb]^
  6963. Y(Lk(W
  6964. ICrTU
  6965. ^2^JG
  6966. GJJGJG^C^mJa
  6967. 2K^u^%2
  6968. ^hmJ^
  6969. ttutZ_Z]t
  6970. ZStSS]SSSS^S SS^ 
  6971. - -S S^SS
  6972. -L ^S-S S S^
  6973. SSTSSSSS
  6974. 3+3+a
  6975. o276oY
  6976. E[[E[
  6977. 7oH|6
  6978. +uxVlu[G
  6979. PNNo]^
  6980. Bj<X+j    
  6981. >.    >V{(YBWC
  6982. 2~+$    
  6983. ]BW||
  6984. 7!lc$
  6985. ^^JJ^
  6986. @TSsSTS
  6987. SSSSS S^
  6988. R  LR
  6989. SSL^ S^
  6990. sS ^SS-
  6991.      S
  6992. 0cUb$
  6993. '*sIY7n7Z{'k
  6994. (+&+(?S}xC
  6995. s+b*]*
  6996. +Kk+^^~+
  6997. uu?^l2
  6998. mC@Z_
  6999. s SS- SS-
  7000. crp6Zr
  7001. EEZvEEE
  7002. ykU9.+jj%x]?
  7003. uG*^^^JG
  7004. ^a5*2
  7005. P+^Jk
  7006. ]tT.G
  7007. s SS- s
  7008. S^S S
  7009. ^ SSS.^
  7010. HdHGDCDGDCDEE
  7011. +2+gW:E
  7012. /-.::
  7013. !?T{SD+
  7014. xG^&J
  7015. ^^^x?
  7016. ^xa^J
  7017. tu_ut
  7018. rYYT@
  7019. - -s  s^S 
  7020. S-.]S
  7021. Sdrq,
  7022. +NC!Cc
  7023. +>+u?
  7024. ^^^2?^JlGa^^<Jl
  7025. tkB/t
  7026. SSSSS S Ss
  7027. sSSS SS 
  7028. ]]S S.  
  7029.  --]S
  7030. !41%07#
  7031. pC bMN@
  7032. }%?W<
  7033. 77]pY:
  7034. ^aul^
  7035. ^(J2^J2+^*^aaJ+J^
  7036. ^xuaJGFu
  7037. t,ZY@
  7038. @SSS]
  7039.  R   - Ss
  7040. SSSLsSSSs
  7041. SSR -SS-^SS
  7042. ^SSSS  ]SS .S    ]
  7043. #11%5
  7044. C[EEl
  7045. |V.k<
  7046. K"TWk
  7047. ?y%1?
  7048. +7w]C]:
  7049. uG<auaau?a^>^
  7050. aa^uF
  7051. JKZ2mtmtu
  7052. TSZS^T^SS  L-
  7053. ^ RS s
  7054. SSSLSS^SS s
  7055. S^S sS
  7056. ^SS SS
  7057. I@Yn73ijx{
  7058. Hu/Bx/
  7059. 6ko~E
  7060. 1T7V+"<
  7061. ,%2>UX?7jG
  7062. -E=j@
  7063. ^?^a+
  7064. v+?^uu
  7065.  -S^s 
  7066. >]FES
  7067. 1R1?E
  7068. 7?[EEu
  7069. .olk?c
  7070. sYPpNr/
  7071. u++a?^
  7072. ^+l^+GJ^uJ
  7073. (^+^u?
  7074. J?+<a
  7075. t2KuY
  7076. ^S^]SS SSS
  7077. s-SS^
  7078. ^SSSS S
  7079. S  T^
  7080. 6:S572>
  7081. (?auD
  7082. <+u*<1+
  7083. mm^2J^y^t222,3Z]
  7084. ]tSSY
  7085. ^ s SS
  7086. SLSS sSL
  7087.  S-SS
  7088. ]SSSS ST
  7089. ^  SO.S S
  7090. EE,Clx[
  7091. p^^].
  7092. u++*u+(+au(
  7093. ^?uuJ^
  7094. 23utY
  7095. ]YT^^]SS   RR 
  7096. S^  ^
  7097. S S  ^Ss
  7098. ]SS S< S
  7099. ,ZBGt
  7100. ?$,?"
  7101. /e7.ZN
  7102. :44" 
  7103. +^+G?G
  7104. a&2(J<au
  7105. a+^?^<+tG
  7106. ]S^T^SS 
  7107. SSSsS
  7108.  S ^SLS?
  7109. YS SSS 
  7110. <#)s[]n
  7111. HC[,E
  7112. SSSS]
  7113. SsSSS-S^
  7114. 66ApY2
  7115. nj5$6
  7116. ?<?(<
  7117. ).    ??
  7118. n.8%544>4>
  7119. Ja+^?u<
  7120. SSLSSSSST^SS
  7121. tSSSL
  7122. sS]SSYYSSS Ss
  7123. bMDsn*Y
  7124. ].T]^
  7125. SS^ ^
  7126. STS]StTS]s
  7127. sS S ]
  7128. SX&:!x&}
  7129. Z4-$kp
  7130. "12),
  7131. <u+?<u+
  7132. sSSlSSL  ^
  7133. ^SL]S
  7134. |!>V|
  7135. 7~c>/6,~
  7136. l}6?.\    
  7137. 1':Z$2
  7138. ?++aa2
  7139. ^<++(+<uu+?
  7140. ?GJJJ<J
  7141. ] Ss ^
  7142. S   \S
  7143. ]KYSS
  7144. sS   
  7145.  -        
  7146. ls! 49#5#$r
  7147. cO7no_]
  7148. Jnc&6~~n
  7149. ?+uu?&+^?+
  7150. J<a+>
  7151. >CJJa?PJum
  7152. tTStS]S
  7153. ]StYLT]^
  7154. ]S.S ]]
  7155. D[EEB
  7156.     6#16n<
  7157. 0!#4%%
  7158. (<?<J?K?u
  7159. J?>2<hmZt
  7160. ]J2]Y
  7161. S  - R
  7162. SLSSsSS.KS3S]
  7163. ]SSS 
  7164. ]S]ST
  7165. SS^      
  7166. oooCn{
  7167. n    >~6n
  7168. YH!ZHC^
  7169. /y2k>(%
  7170. -=T k
  7171. BYY!s
  7172. ^SSTS]
  7173. TStZS
  7174. Y^TBYY
  7175.  SSS-S
  7176. CN llcMN
  7177. ADoG<
  7178. LW~?%    
  7179. P<+TT!}I2
  7180. Ok<$.
  7181. a?(+?J?(J
  7182. uu?=+a
  7183. <J2FaJ
  7184. K<l2a%
  7185. b.ZlYYL^Y
  7186.  ^SSYSSZ]STS.
  7187. ]]]]]
  7188. SSV]S]
  7189. Y!]SS
  7190.  S  S    S  SS S
  7191. prbsr:
  7192. 6X~|~
  7193. *^<2ua?*
  7194. uGvJ2l
  7195. sS S s
  7196. 4141 
  7197.         [x>,k
  7198. S/dW{u ?
  7199. XWeX.
  7200. ++<+<?(a?b
  7201. auJ<?2
  7202. lGFKJ
  7203.  SSSS
  7204. . ST^
  7205. Hs-'#n
  7206. 9f$Ks
  7207. u?^ua
  7208. ??ua^
  7209. ZrxT.
  7210. sS TS]S
  7211. ZZ-G]T
  7212. 1z'LH
  7213. l'A2o&
  7214. 49paO
  7215. v+vx(*
  7216. QK3Z3UG.@
  7217. SSSSS
  7218. ]Z]]BZ
  7219. .LTu-
  7220. Og:f1TD
  7221. -$%4:
  7222. FL"p>
  7223. Cs3z<w
  7224. 9CzZ~
  7225. ua(*u?
  7226. 2]L@/
  7227. <>(jJP
  7228. :-54-<
  7229. NNoN0]n-l2
  7230. T%45 2%4
  7231. +<?b'+
  7232. umJPy
  7233. S SSS
  7234. @T^SZ
  7235. BB]rST3
  7236. 70HC-46
  7237. %$2445;44<
  7238. rAgn# 
  7239. a>+^?a^?
  7240.   sTS@]S
  7241. %%53.
  7242. 55-%5
  7243. B?26l
  7244. ^o0r+o3@@n
  7245. 77~N-416
  7246. >1440 4#
  7247. $#N$n7
  7248. 454446
  7249. <?uJJ&
  7250. KKJ2m
  7251.  R SsYT^S
  7252. 3Z@B]]/
  7253. ]]/@,
  7254. ZtYAB
  7255. TtS]SZ^
  7256. S     S- ]
  7257. ,,y/I3LV~
  7258. -%    4#    
  7259. %4 44
  7260. '?(ioB?
  7261. 514842
  7262. 5#"54<<
  7263. *?a(x
  7264. J?uaJ*
  7265. 2JJbuxG
  7266. YYt] ]
  7267. SS^YYS
  7268. ]]Z]S
  7269. SBZ]]u
  7270. ]STY S S   
  7271. <-35<4%<4><
  7272. <44>>44:
  7273. 4514<
  7274. 484>>
  7275. aaJ>l+5
  7276. 2(K%tFh
  7277. tYYrSS]S
  7278. 3SrSZ.
  7279. ZSSYs
  7280. S?S  
  7281. /Wyrecc
  7282. c6c:#
  7283. 241220430<%
  7284. 2]r0@+
  7285. 144>>4>83
  7286. <34<44
  7287. 4>>84
  7288. ?BXy(
  7289. ?JJ>lhC
  7290. JV2.T-!s S
  7291. SRRS^TSS
  7292. AZG].
  7293. ,2Y]TTS^SS  S
  7294. SLSS 
  7295. 2#n77
  7296. 45"#5    4%5
  7297. B*B':
  7298. I]yT1
  7299. <4<<>4<>>4<
  7300. .@.l S\?
  7301. r~G&9
  7302. Z[EvZ
  7303. 'Pk!w
  7304. yuh^u+/^
  7305. G^Z]Z^u
  7306. /]2^/Z
  7307. ]]-Vr/
  7308. y!,.,
  7309. p++\.s+
  7310. "%ocY
  7311. 411144
  7312. #nA34
  7313. a+*u?
  7314. DhkJu
  7315. R  --
  7316. R  SRSSS SS]
  7317. ]Z2^Z
  7318. SuSrZ
  7319. yt/ Y
  7320. 49424bU
  7321. [[Bv[
  7322. @n6@sY2r.]+k
  7323. 4n$c7W
  7324. a*?Ju
  7325. (?JJ<hk?y
  7326. .Y..A
  7327. SS- -
  7328. RSSSs
  7329. YLS^ZG]
  7330. SYYSYY
  7331. SSLS 
  7332. C:402
  7333. 44<52    n##
  7334. EEEEZ
  7335. +..@Yn2]@]/
  7336. 7o7o7]
  7337. 4<114<
  7338. 1114>5C.eC,
  7339. ++++<(+?
  7340. K?hCFKZyl3u
  7341.   SR  Ss
  7342. SS]ST
  7343. ZtSSY
  7344. mLuSBSZ YZ
  7345. SS] S
  7346. uT.  .y/
  7347. 7((R3
  7348. +((yV
  7349. 02{+r%4
  7350. no-3#
  7351. >hmmJ
  7352. Vt X^] ]
  7353.   S  RS S
  7354. SSLSSYYTs
  7355. YLLTLLLTsY]
  7356. yyt-/y.
  7357. [[vvo[Z
  7358. 4%<44
  7359. 1<1;4
  7360. nP*|D
  7361. >y^W%Ntt
  7362. S-  ^S SSS sSSSSSS
  7363. SYtSL
  7364. ,>u3+
  7365. r]3rcNs
  7366. >>4RN
  7367. 2<?u*u?
  7368. GCZNrFt
  7369. l T-T
  7370.  S -SS^
  7371. k2lTsO
  7372. 37g0-
  7373. 14:1#o
  7374. [E[[[v
  7375. #n7Y^@
  7376. a?a^+J<^
  7377. -S. ]S  - 
  7378. S^S SS
  7379. SSSSTLTSSSSSS
  7380. ST]]^Z
  7381.     .-xU./
  7382. y((L+
  7383. 266#36"#1242
  7384. 4>29%o
  7385. 2ZB[[
  7386. #<&#%
  7387. ;1>2U]
  7388. +v+(+^aa(JJ(JJy
  7389. rmWB3
  7390. BB.s,T^.sS
  7391. R  S^^S SSSS
  7392. sS^SSS S
  7393. TLSSS^TY
  7394. YYY]S.SY
  7395. SXTYS !Y
  7396.  S  S
  7397. 85#<#
  7398. 21 %%
  7399. ##444;>>
  7400. %?>K?
  7401. J<Ja%<JWJ
  7402. t2/ZV2
  7403. R R  SS
  7404. ST^]] S]
  7405. sS]SYT
  7406. SYT^SST^T]
  7407. ST  SY  
  7408. 6#:cT
  7409. nc34>
  7410. 18<O.@.
  7411. O7n72=%32<4>>><
  7412. 145nCX
  7413. 3u?++
  7414. <au*<?
  7415. u?(u>
  7416. F?J<JM
  7417. =?BWGT
  7418.  S S^ S
  7419. SSSSSS YSSS SYSS SSSS]
  7420.     .VyU
  7421. *eB| 
  7422. T71444<
  7423.  %%7#$Nn
  7424. +_bN#:#:
  7425. -kD<G'b
  7426. FmZbWr
  7427. rVr,3
  7428. ,-]T-
  7429. SS.SSS SSSS
  7430. YTSSTYSt
  7431. SSSS ^S
  7432. ^S  SS SS]
  7433. ,PWe42W
  7434. :-:b7
  7435. 'H641
  7436. <#1544
  7437. :n^7.
  7438. ^t/GP
  7439. K].B,
  7440. ^ ^O-
  7441. ^  S-
  7442.   SS]SST-SS S
  7443. TSSST^SsSSSS
  7444. SSS S^
  7445.  S S    
  7446. T4#T7
  7447. 14494
  7448. 41<3n^0<
  7449. ?(?ua?
  7450. >+>?J
  7451. Kuk2uKVsu
  7452. SSSSSS
  7453.    S.
  7454. S^  K  
  7455. xu&.Isr
  7456. <+&+>aa
  7457. u^?tu
  7458. mD/Gy
  7459. R LLS
  7460. s^SS^]
  7461. ]SSs]
  7462. SS^]sSSSS
  7463. SSL. S 
  7464.    S.
  7465. VW/LL
  7466. ,K+(L(+y
  7467. (.nwcc
  7468. <+a?a^??uJ&u
  7469. Y/^T^!,Y
  7470. sSSsS
  7471. ]S]SSS 
  7472. sS ]SS
  7473. -S  -
  7474. S   - S
  7475. WKSdP
  7476. Ij~*1
  7477. 6<0Qzr
  7478. ?Mg.F
  7479. ZB.t/AZ-!YY,
  7480.  SsKSSS?
  7481. SS? SS
  7482. Aq{(,
  7483. </))l
  7484. m5Vj,:;
  7485. .oNNc
  7486. Z0%44<1
  7487. 1>44-:
  7488. T$$?    
  7489. m>R+J
  7490. a^Su2^
  7491. S>G?a
  7492. ^>Ca5JtPY
  7493. Yk.ZBB.t/TY
  7494. LT,,,^
  7495. 3TSSYTs
  7496. .YS^SLS
  7497. SLL S
  7498. VQWMe
  7499. ZB.x(
  7500. x?uTZ
  7501. Z5214
  7502. ooN~HrPb
  7503. @.3@n
  7504. .]&T%
  7505. 4942:2
  7506. ,~Wx    2?
  7507. ?a>a+a*G*a
  7508. /BB.tZY
  7509. S-SSS S SSS
  7510. @~c$4
  7511. Ye(    (
  7512. 33492<
  7513. 1124#$#c
  7514. ?*aaJ>a
  7515. '<J^?
  7516. ..YS.BS].]..s
  7517. YtSSY.SSSS 
  7518. SSS S  s
  7519. 04941
  7520. 3liNo
  7521. o^/Y]
  7522. .<44><4
  7523. .o7?~r
  7524. Ku>]>
  7525. aa?ha^aJ
  7526. mB]t/t]
  7527. ]].s^
  7528. ^ S^Ts
  7529. sSSs  SS
  7530. SS -  S
  7531. 3P//u
  7532. {l_^o
  7533. Yo.27o
  7534. 6nn_o
  7535. 23443
  7536. %3!cc
  7537. B{KS{n(
  7538. aaaJaa2da^&aJaaJ
  7539. W222B/3
  7540. Y/^Zm.].S..]
  7541. ^ST sSSSS
  7542. ^ -  ^
  7543. .    
  7544. T)648
  7545. o+@...3.73.@@
  7546. 11444
  7547. <210541>4
  7548. bCcN!
  7549. V.y^2l
  7550. ?b&b?^
  7551. aaaaJ
  7552. ^JJJJ
  7553. 5523Zu
  7554. m,t,mr.X.].
  7555. ]]]TSt
  7556. sSSSSS S
  7557.  S-  -
  7558. (2ytk
  7559. !,,-PW
  7560. 2.n..7.
  7561. T03b3
  7562. 50541>
  7563. %3]sBC^~#20M^3
  7564. JJK^t>>l<
  7565. JJJJaJaG
  7566. JJaJ2yJ5
  7567. sXBSs
  7568. S S   
  7569. ]TSs]TSSSSSSS
  7570.  ^S -
  7571. -S!s   ^
  7572. axxx,
  7573. /Nccs6L 
  7574. ,P)L44
  7575. BZ[ZG
  7576. 416n2
  7577. 04341
  7578. nsI62
  7579. a^mlGJJa
  7580. 2aamtWKJttYtY3,r,ZY-r 
  7581. ^Z. ]s
  7582.   S -
  7583. ]SS SS
  7584.     >
  7585. W3/)(
  7586.     ,CW44
  7587. Ryyx./X0
  7588. k'N! 2
  7589. 54!NHJ
  7590. @/~/\~
  7591. ))-,)juS@
  7592. gH6c6
  7593. #$H$7
  7594. *0k b!# b867Z
  7595. yJbt>
  7596. x^ybu
  7597. /-rqK
  7598. .7.7n
  7599. +LWC+#
  7600. >1>44
  7601. #:Hp:
  7602.  xlyJb
  7603. tttt.
  7604. ttr,YYm TYs
  7605. ]G].T
  7606. D&c>?W*K(}V/qX
  7607. @|iZ-
  7608. g:lc    Y
  7609. g<P16
  7610. <>>1<
  7611. >>42<%
  7612. P~AcTjpb
  7613. 5%?NO
  7614. r^3?5
  7615. ZSQxuS%
  7616. .yTyW
  7617. uWT@/
  7618. y(g&)
  7619. T!YZuu
  7620. N;6I6vH6
  7621. <4845
  7622. XRTyK
  7623. t^y^y^S2Jb&lKb
  7624. x.yy*yuJ*xt-G!.|mYd(
  7625. |TgW,
  7626. jjlYSF
  7627. 0%2:6A?
  7628. /f{YWO(L
  7629. @w@^{{o#sb
  7630. >4>142
  7631. 7brr$c#3#:#<
  7632. 2JJJam2%
  7633. a^2jJ
  7634. B2ttmZrV]m.Y
  7635. ^YZr!]SV 
  7636. ,YSS.
  7637. ]GL,LLT
  7638. ..yb*3/d+xZ-y,
  7639. .b++3
  7640. <|(L(,
  7641. e7@IYN
  7642. *P?%11
  7643. p8    04
  7644. 4    k]1}
  7645. 2JJ_2r^RGSKlB(
  7646. ]].Z t
  7647. uLTT^S  -
  7648. -  ].
  7649. .y(*K
  7650. ,Y/-,uW,{(4
  7651. y!////
  7652. 6$HoI
  7653. &jB}*
  7654. 84>4>44
  7655. 2#    34##n
  7656. ,-ZKVFJxK
  7657. KJ5^Sbu>C
  7658. ]S]YT.@]
  7659. SLTLTT]  S-
  7660. VVZ./r/]
  7661. u,?    $)nW,
  7662. l[Evo
  7663. qA12C
  7664. 5#    2T HU
  7665. <-9Ca2
  7666. YyVk?yG
  7667. KumJJ
  7668. t.Y^-]]. S^
  7669. ]^TZSZ]
  7670. T].SS
  7671. n@66oYnoo1I77w@
  7672. :c5r#"
  7673. 482<4
  7674. Ku2JW
  7675. ttJ^thkluB2B3tS!
  7676. ]]STt
  7677.  S]S 
  7678. S./t,
  7679. o/rYwY
  7680. [[[ZE
  7681. ?<+P?
  7682. %4-8F
  7683. 3!nH4ccc8
  7684. ,,r,Ckmm
  7685. mC12J
  7686. t%yl3F@BmL2lt-Lr,].]]]^s
  7687. ^]S S]
  7688. S]STs
  7689. TS] SS
  7690. Jx.(?y
  7691. JT!V(
  7692. [ZEEEE.u
  7693. (??P?
  7694. o/6,C        
  7695. 24##$?
  7696. 436orC]bb
  7697. yxX+X1
  7698. ,us/CFy
  7699. Wttr22
  7700. u3tl]m
  7701. m^!]t
  7702. S  SS  
  7703. T TKS]SS
  7704. uyJt 
  7705. l0a/(
  7706. 4%4413lb2
  7707. C7-8?
  7708. <2>244
  7709. 22mC>mlF/BMJB/
  7710. ttu^,Gr,S
  7711. T TLS
  7712. t3Z5JWs
  7713. *CE,Z?
  7714. 124KyP\
  7715. ,,RJ)
  7716. VGymBKZ3t
  7717. YT.SS
  7718. !     ]^
  7719. 2ux2x
  7720. +lxxJPR+
  7721. hC,ZZZi
  7722. bo%%>>4
  7723. rM{-?
  7724. C!blB
  7725. <%<4<
  7726. @.Y.s
  7727. vn+j,:
  7728. y(K<J
  7729. Km222
  7730. 3yBtKV
  7731. .uA2Z
  7732. 3ZS]s
  7733. Mo4%>>6
  7734. -wbUCs3
  7735. %<vrv~ZLI\
  7736. RPXRWvD-
  7737. 2)x"2
  7738. uYYt]
  7739. ]sT]]SSS^  
  7740.  - SL
  7741. 3l[[[v?
  7742. /xZuE\u
  7743. D}W+2
  7744. 111>T7C
  7745. $^]lo
  7746. 28#:#
  7747. %%7wNc
  7748. ru3Z^ZBT
  7749. ^]L]S
  7750. ]SY S
  7751. -SS.t
  7752. y/]rTm 
  7753. ]/ty/]
  7754. T?W(*(xWEECu
  7755. 26%52$br0
  7756. +/P|U
  7757. 1;55418
  7758. 40 <0R
  7759. ./Ylytr
  7760. .   S
  7761. y#8Np
  7762. 44<440
  7763. 44>4>4445f
  7764. 3Tm2X]
  7765. Yt.%5
  7766. xuZ[Z2B
  7767. <<4:1
  7768. 4;4;4
  7769. <%n-c
  7770. 7ml_c44<
  7771. Z]rG-u3VB
  7772. T3r]B
  7773. SBSATLL
  7774. rS.SS.S s
  7775.  SLS   ^
  7776. ,,,,u
  7777. /Z!|u
  7778. BluA??
  7779. :4 2    
  7780. u^2s/
  7781. -GSV 
  7782. sS  S 
  7783. SGyuxW
  7784. ]WZ/r+
  7785. : ")X
  7786. 111;4
  7787. 114<4
  7788. ,ymu3Zr
  7789. ^Z^Z.
  7790.  -  sS
  7791. Z-ty,J
  7792. SWZW~+
  7793. k[Z0Zl{+
  7794. ,[on+
  7795. 44291
  7796. c^\,W
  7797. tJZ^Z22ZT]u
  7798. tYYtT
  7799. ]SZ^] .s
  7800. SS-Ss
  7801. 4483vbcI
  7802. eK{+m-
  7803. 44044
  7804. 4<144    4
  7805. l^.2@
  7806. uqPY/
  7807. 48%7w
  7808. -T,YBt3Wt,]2
  7809. X@Z.tYYt
  7810. r.BtY
  7811. sS]SSSS
  7812. RStuy
  7813. Wx,,/Y
  7814. #1<<4;>
  7815. 544025:441;1
  7816. ?-rnlY\
  7817. ,YAZG].ms/l]
  7818. Y^ZA3t,LLSY
  7819. ^ZSS]]]
  7820. ]S-S 
  7821. m/\bcr
  7822. nYwoHo+
  7823. 72c'#
  7824. 41448%<
  7825. %<4>>
  7826. ZYrZA
  7827. ]LZ].]
  7828.   S S
  7829. e4(k.
  7830. Z[[Zl
  7831. ,.a(+yTZ
  7832. XAw?ZA_
  7833. 3#8449
  7834. >>41440%
  7835. ^/3.Z
  7836. yYY/]SYZ ]
  7837. rZ^SL
  7838. tS!ASs
  7839. 2yS/J/,YTu%W
  7840. p38;4111%%%844
  7841. 414>514
  7842. *r^P77
  7843. e3+Y2++
  7844. .2.BJUYZ
  7845. 2YY]tt
  7846. /t]ST.
  7847. SSsSSS
  7848. +(5(V~
  7849. J.uT(&(~(
  7850. ,D(|TW
  7851. 7pro:Cn<-
  7852. O7{?*
  7853. n2>11
  7854. 7mr@@Y.7co
  7855. 4>>4>4;
  7856. >>>>4
  7857. yYZ]VAZ.S
  7858. Z3.ZAZ
  7859. STt^L
  7860. ,xW|<
  7861. y(*3(|u%
  7862. %2Wu,
  7863. <?Y2{,
  7864. {$c{    
  7865. <1%144>
  7866. ,7mH-
  7867. .oP~NI
  7868. 5%8444
  7869. 44-:oN
  7870. ^ZtttZ
  7871. 3SZ] YYB ^ATS]SS.SSS 
  7872. S LS 
  7873. W)l+W
  7874. RSx/x,
  7875. (vS2A
  7876. 5NQIM
  7877. @rooT
  7878. l|0:1
  7879. .t-ZsZ.Z
  7880. S ^T^ 
  7881. "FYl9h
  7882. +S&rY,
  7883. noT$+
  7884. ~o6P7z"41
  7885. 44>>>4>8
  7886. tYtYsZ
  7887. YlYZs.ZY
  7888. .tYYtSSTt
  7889. L^SSsSS S
  7890. ^Y-   S 
  7891. T|||&
  7892. "z1b)k
  7893. 7Jz$254;6
  7894. 2< 1{
  7895. ZZB]WZ
  7896. t].G 
  7897. GZ^YT
  7898. AZSALY
  7899. x2J+WJ
  7900. 9nrzL
  7901. ZZEZu
  7902. 1444~
  7903. ^N-lo6@
  7904. <14<<4
  7905. 148$k
  7906. YtTYZ
  7907. BYSLT
  7908. ]SS YS SS^
  7909. +<3a(.3
  7910. FkJ!B
  7911. 11<>>
  7912. ^ZYSYt 
  7913. Y]r]].STs]
  7914. tZSLS tS S^,^
  7915. <t2TS.
  7916. 3W((N4W
  7917. >11>4>>>44941
  7918. rc*{4T
  7919. 414    %
  7920. 3#3#1b
  7921. ##141
  7922. Z^S]^
  7923. TSsYT
  7924. rS SS
  7925. 43pb+
  7926. ^!3tZB
  7927. ]uYsLY
  7928. tY]B.B
  7929. AZ.Y,
  7930. tS]]TY S
  7931. SSsS  Ss
  7932. Mxa2,
  7933. 21448
  7934. -Y.BtYZBt
  7935. -Z.rl
  7936. Rr*++
  7937. R+m( 
  7938. 46124
  7939. 204944;>
  7940. ttZBZ@tZ.
  7941. 3SYY]]^Z3 ]S^
  7942. SSS  S
  7943. 14141
  7944. >>44#    
  7945. B]Tt.G
  7946. ^ZS]SSs
  7947. 2k*++(
  7948. P s.QP
  7949. +CW((
  7950. ]m,Z3V
  7951. ]]-x?
  7952. a@/^!
  7953. /WB+:
  7954. S .KB/
  7955. YtT3B]]ZS3
  7956. ZS3truYT]
  7957. S S RSS
  7958. ^  R 
  7959. rSs yyP+(CW
  7960.  SSS-
  7961. V,TtVy+
  7962.  VTxx~3
  7963. 00azb
  7964. Vg| !^
  7965. &KZ_(
  7966. BBL]B
  7967. u^Z]Z
  7968. ST Ss
  7969.  S -S^
  7970. S .Y!j
  7971. PdGWVP&(
  7972. |=qW-
  7973. Z-yW|J++
  7974. TX(@&
  7975. 25046
  7976. ./sr]
  7977. /s_.!t
  7978. ^Y^Ss
  7979.   S^-
  7980. U&$|2Ty!&S+
  7981. TQrqr.u
  7982. /K xK
  7983. ]ov6XY$
  7984. G T-FM
  7985. D0ij*
  7986. l%\U-)
  7987. GBByZ.
  7988. Z-ZlY^
  7989. S2+%S*N
  7990. S3@("gb
  7991. I0HIIabfb
  7992. 0IazN
  7993. bfzaz#"
  7994. bIzIIbIb
  7995. \6uI6Ia6
  7996. Y.IAYn
  7997. !-/Uy}xx
  7998. YVxY>
  7999. D.rw:w
  8000. ,~D7|j.
  8001. Y3.GJ
  8002. T-.]GU3WG
  8003. tZW_-Z
  8004. YU@ZY
  8005. 2,V-f
  8006. ytt./Ts.
  8007. ,j)CP>C)
  8008. ?UrZ-
  8009. *XqAX
  8010. BmET((3yP
  8011. gzb00
  8012. 1"IH1
  8013. M6H5a"#H
  8014. ]0IabavIIabv]H]D0D
  8015. DHabHD
  8016. ]IDHab
  8017. HIMaIa#faNab
  8018. /UK-uy3.TPt|
  8019. QsHq8T2"
  8020. !,A!2Ylu
  8021. ]Yt3Z
  8022.  |v|Q
  8023. Waq|!
  8024. @nwnn7
  8025. 7n6XYo_oo7
  8026. $VU2y
  8027. w2mI*N
  8028. ,BknQ(
  8029. u3W3l
  8030. .C-G.Z-G
  8031. uTS^t
  8032. S]Y!rC%lx?
  8033. m!D(WP~LL
  8034. 7X6n.
  8035. 7~PjD
  8036. ;:P,l
  8037. uBu_u
  8038. ZYutC
  8039.  Z^T 
  8040. JXT   
  8041. T]Mm&C
  8042. 10I01zIbzb
  8043. 6H"05M1
  8044. 0D0D1
  8045. D1]1vbb
  8046. ]bbbvIb
  8047. 1IaMaI6z6zb
  8048. #0b5a#aaDzz
  8049. 1a66"
  8050. H650"
  8051. "1C]1
  8052. baIubz
  8053. 6azNbzbI
  8054. 61XHnN
  8055. OW||U
  8056. H.mv9
  8057. On9v(
  8058. jZ)>2
  8059. <>MuRP?2SQrx
  8060. fM0I"
  8061. 6zaH"1"H#"050"
  8062. 0H01a6
  8063. 0DHvb
  8064. 1\10D
  8065. I0H]zb
  8066. 0H1zba]0C
  8067. I6afb
  8068. fbaIb
  8069. Mf5I"1
  8070. H1a1#HHIIH
  8071. Ia6azbM"6H"1
  8072. H#aIb
  8073. fzfIaaM5
  8074. 10D0I
  8075. za]a0]zb
  8076. aIzzb0D
  8077. D1abb
  8078. 1HHIzfN
  8079. ByuC>$6<?
  8080. <.j/<y}P@(
  8081. QNg~/
  8082. m2.22
  8083. rLr3TTS@
  8084. S]SSSS
  8085. ,|x|G|
  8086. MMH55
  8087. 0aHbbbf
  8088. Ha1MzMbM6z"5a
  8089. 5"H"I"H"1"H0M6abfb
  8090. bMa56aa6a05"
  8091. DHDD0DI
  8092. HD0v]ab
  8093. ba1H1va
  8094. avbbu1\D
  8095. \IIa1]
  8096. z0111
  8097. HbaMbM6a66a
  8098. |wp-pb
  8099. Poj!(
  8100. X7e{W2o
  8101. {L,)~Bx
  8102. (yyyF<
  8103. ,KYY3 
  8104. srVGx
  8105. y(/2CLS  
  8106. W//7WPLWW
  8107. 01I50Ia#zz66H5#H5#H
  8108. 0"1"IM60
  8109. 6H5b60H
  8110. \1D]I
  8111. \D1D\
  8112. IHDbzb
  8113. vabbb
  8114. gzH1]
  8115. Izz6aNH"66z
  8116. fI5"0"
  8117. H#H"51af
  8118. ba6a#aa50
  8119. zaNMaa6Mz6
  8120. 1Cv1DH
  8121. bb]0\
  8122. b]bvb\
  8123. H1HD0
  8124. \1Hv0H
  8125. aNzbMz#IaM
  8126. 5zMa50"1"0"H1"a6H
  8127. "6zgz
  8128. gaaM"#5I5bzfz
  8129. a6aNz
  8130. zbMaM50H"1
  8131. ]DI0v
  8132. DIbvv
  8133. IbzbHI0IzIzb
  8134. MI#HH1M
  8135. T|O{|
  8136. /xPPE7||j
  8137. %0;2>
  8138. >;44><
  8139. 6079f
  8140. T3.hW
  8141. lhCJ_
  8142. ?!rT.
  8143. <n?"Q(CT
  8144. )Clxl)
  8145. B(@.E)@/D)
  8146. IjD3# 
  8147. 46>54
  8148. WDyo(6#-
  8149. :B|%K
  8150. BAd*3,
  8151. 64;4<6<
  8152. +,YCyB,);3
  8153. O T-G.xJ
  8154. 2Z^Rx
  8155. mGXy^5)
  8156. vTW/*+(
  8157. zMfa#
  8158. 5"IHN
  8159. baz#a5HIH5f#H
  8160. f6a56aH5"
  8161. HDIuvabuvbv]HI1abzb
  8162. I\1D0]]bb
  8163. )055H#5"
  8164. 0"0HNzfz#`#"Ma
  8165. ""515a""
  8166. 1"15I
  8167. za#HM#5I
  8168. ]a]vbavDH]I
  8169. 100]zbb
  8170. zbzbb
  8171. 10#01
  8172. D"v1DCD
  8173. C0D0ab
  8174. IbzM5
  8175. *505HaIH
  8176. 10"00"106zIa"H
  8177. H65M51
  8178. "H1Hb
  8179. H"z50
  8180. 1D\DI
  8181. ]IH]H]
  8182. k?<<}
  8183. |,||?
  8184. .po-Nf11
  8185. Gl2y>JJJl
  8186. $o723%s
  8187. @mflZ?(
  8188. )6z6z6zzNH
  8189. HaIHbbu6z6a00
  8190. "0150"0"
  8191. 0IHMH"MI
  8192. "5"6aMzb
  8193. aDDI]I
  8194. H]I0]DI\1DD1CIHIab
  8195. 6]aIb
  8196. zbbIzbbg
  8197. lfoyqzo
  8198. 3lZJK
  8199. ba51a5
  8200. HHbzb
  8201. IabHIH1
  8202. H1"""M#HM
  8203. #afzbz6aMzb
  8204. 1Haa"1
  8205. ]1]D]
  8206. ]1]I]
  8207. HID\1
  8208. 0Dbzz
  8209. DIIzbvzI
  8210. HMaHaf
  8211. bzNz5aa#zg
  8212. HHba6z
  8213. babaH5
  8214. I5H5H""1fb
  8215. 6za6z
  8216. faMfMMa
  8217. z65H#"
  8218. D1H]HIDD\I
  8219. 1IDHDDD1
  8220. zb1001
  8221. 01vbz
  8222. bvzvHb
  8223. zbH11
  8224. z5Na#
  8225. HI01HH6
  8226. bzzbz#01"
  8227. 5HM"1"0"ab
  8228. z5#0"M5M
  8229. zI5H"
  8230. 0C1HHD0D
  8231. HIIHD0]
  8232. baI01
  8233. vH]bz
  8234. vvIvHbaNaN
  8235. bbba101
  8236. zNzzb
  8237. zba5HI
  8238. 1501"H01
  8239. fzM#5zbzN
  8240. fzMMfHM5
  8241. 55"0MH
  8242. 1]]HD1vI
  8243. ]0vD0D
  8244. zfHIHH0
  8245. zb]]aIzb
  8246. Na1HI0
  8247. NbzzbaI0aH5
  8248. b6a#zM"6z
  8249. I0HHD
  8250. 0v]D]0]1
  8251. D0]]II
  8252. Dbvab
  8253. bzbzz
  8254. fzNH6I0
  8255. \HIabb
  8256. 111H1
  8257. Iabbz
  8258. aIHbb
  8259. zzI5I01
  8260. Y?,    ?>%X(e
  8261. $3ojT76..w
  8262. k3#24<2044
  8263. ?,qq03
  8264. <<>>>
  8265. JGm+m
  8266. lm^uJ
  8267. +]@\A
  8268. 10110Iab6zb
  8269. gz6HabzHIaabHH
  8270. 5a6\z6H515z
  8271. M5555
  8272. I1]]HDID1]
  8273. I]I]]HvI
  8274. b]v]bbz
  8275. zbzbzIa6zNz
  8276. zM6a101
  8277. 01HIIHID
  8278. zIzbaH0
  8279. 1]bbbbb
  8280. aababaI
  8281. 0IIzba
  8282. 01GIaf0
  8283. "5aM5H"M#zNz
  8284. MHIM50
  8285. 1D0]IH
  8286. D1]0vD]uIIvI
  8287. bbzDHIHMaazfzz
  8288. 6HI00
  8289. Mbbbzb60
  8290. bzbzI6Db
  8291. W--cUtq
  8292. UVy(+
  8293. },eyB.}$
  8294.     ?!|o|
  8295. ,Y444
  8296. 44>24lcM.
  8297. uUyut
  8298. VJ}    B
  8299. f/LL7
  8300. rWJxSumZ
  8301. H#bzg
  8302. H6abfzN
  8303. af"H5H"
  8304. IDHva
  8305. 1]DH]Db
  8306. ]v0vI
  8307. bzbaDH]H1H]#
  8308. 6z0H5HHaIa6zMa655I
  8309. 11HIIDa
  8310. 11a]ab
  8311. Vxxk\U?T
  8312. #5422
  8313. ;1>>4
  8314. g9X0\
  8315. %    #$N
  8316. PJjJJaJ
  8317. 2(uy^
  8318. aa^Gmu(a
  8319. y(WL,WW}T
  8320. ,.,XS
  8321. ]/uP?)*JrT
  8322. ??2??
  8323. ;4114
  8324. mJJ*^*^u
  8325. 7Y%%7
  8326.  UUK~
  8327. 4Co@7eW
  8328. ,-NbN
  8329. ?$1SyWS(,1
  8330. 44141
  8331. JJJyu
  8332. CPTWBYY
  8333. BWy3RPC
  8334. bc_N>n
  8335.  ~xSn
  8336. CaL))y
  8337. )(*}g
  8338. 2444:42
  8339. r2Aq.
  8340. 0&r1]4
  8341. ,]VuGy1
  8342. (?aJ*
  8343. G<532
  8344. ]]   ^
  8345. .yyy/
  8346. <cn-]b
  8347. LWYCB
  8348. 4>4><
  8349. 411<4;>41>4
  8350. 3pr-$>5
  8351. >G*?>^J
  8352. ZLrR 
  8353. ??S})TB/7
  8354. -T(3P(
  8355. 2B&_;
  8356. C~TBP
  8357. $)Y/L
  8358. 2041444
  8359. 44445
  8360. sy?Fb&
  8361. K&J5a<m
  8362. ~OTk)
  8363. ]S^ S
  8364. )?F|C}+
  8365. n&E+n+y:
  8366. CXBB}7@e
  8367. 2>49441
  8368. <4125
  8369. aa(*u1?b?>
  8370. ?-kQ,{*
  8371. 4<441
  8372. ?/- s
  8373. 1%<?a^?a
  8374. 2u2lm
  8375. 2m2Gt
  8376. ?-o~k.*
  8377. Wk}(T, 
  8378. <1;%Z
  8379. 4114>
  8380. <^?^?a
  8381. b?aJ^5JGGa2lKJ
  8382. 2ButtZ
  8383. ]]SS]]SS^  NS
  8384. |TX.L
  8385. u4r//^\Y
  8386. 4494>4
  8387. 4>411
  8388. *a?P^?a^@K2G&J2G
  8389. utGZZ3
  8390. ;?j})
  8391. x>1*J
  8392. a^^Q?
  8393. X)4LL
  8394. !u!@::
  8395. j|-X&d
  8396. 4>1112
  8397. 441<411
  8398. (Sb?^l^<aa
  8399. ^T ]SY
  8400. UXWKT/LW
  8401. W/}?:
  8402. u/JPl!S
  8403. 3r3f996
  8404. 4;114>14>
  8405. ljF?)
  8406. )?HFj3]?
  8407. KC?J*^
  8408. -;0?C}
  8409. {BxQ&q>
  8410. OCSTu
  8411. sY,G<
  8412. Un/G\|7U%T$T,Y<F
  8413. YnYj&
  8414. 4>114
  8415. >41    V<
  8416. JaaJ'
  8417.     S
  8418. e4LW3xyxZZ
  8419. nT754
  8420. rf,W3/
  8421. 14>>1
  8422. |D1?S
  8423. O~2BU,<<?
  8424. Jaaa>
  8425. (^J%J
  8426. 2J2r2
  8427. n)P|}
  8428. 1b@2X
  8429. 111;1>4
  8430. 4;>>>>
  8431. >4=2 ;
  8432. ;1>11%
  8433. -XYyG
  8434. Jy?aa&J(J
  8435. %aC^*J2GtJmGu]mT
  8436. 2Ux}W
  8437. T~xkX-
  8438. J3(3W
  8439. @@@.Y
  8440. 7{$c-n
  8441. 4>42<T
  8442. xPyyy -
  8443. JJayl
  8444. baaJ?
  8445. G?k2a^yG
  8446. sSSS   
  8447. k}j,-
  8448. <*bK)
  8449. \}jyT
  8450. @opIm
  8451. 7WY+72
  8452.  #53c
  8453. 5444#
  8454. >;111
  8455. >>>4;
  8456. 2E2kx$?    
  8457. .WK(G
  8458. a2><a>K+JJ^<22^yG
  8459. uY TYS S  
  8460. \`}T$
  8461. K(,yjkk
  8462. ]-    $?-+,
  8463. @r/r2
  8464. N411 55
  8465. 677Y3
  8466. 64914
  8467. ,=>1<
  8468. (PyVBJ%
  8469. aJJma23u
  8470. rt SY    S
  8471. (hxnx
  8472. ,xt( 
  8473. -,mkx.    
  8474. 4;5>%n!
  8475. o>A <R7c
  8476. 0oA^M3.
  8477. n$%45
  8478. kkP\    
  8479. aa<?*G
  8480. Rat2Z
  8481. TZtr2B
  8482. ^. S^   S^
  8483. x}oy(|-
  8484. 7.Y2A+Y3
  8485. 55>4>%T3
  8486. 7677i
  8487. 14-7rN3
  8488. q#!U* 16
  8489. 4111>>>
  8490. ,UX%Kr%kJKutmK
  8491. 3|G2.tY.
  8492. OBoUY
  8493. .Y@@67
  8494. n+nl{Cb
  8495. ]YA@3
  8496. 1>111
  8497. 3~||?
  8498. (yJ2m
  8499. ttYZ]
  8500. ].S]s
  8501. Y2YY@
  8502. Y@^rs_
  8503. m>>1<
  8504. >>>10C.e
  8505. ~(XW3
  8506. x^JJ^(JJ
  8507. K222ttJ
  8508. tY^T].-Z^T^.]
  8509. ]/Ux    ,y
  8510. 72+J2
  8511. 7.w70
  8512. 1>1>;1
  8513. >>>13    @e)
  8514. ~(@,L
  8515. KuJ)?^*mG
  8516. G2KuZtysT
  8517. ^S    .
  8518. T. ?<?~W
  8519. >>1442$+
  8520. P552uK(^kKt2
  8521. YtST.]^Y!] 
  8522. .S    
  8523. ]bcr@o
  8524. roZC<64
  8525. 411<;1
  8526. 4>>><4
  8527. $6X6.
  8528. |Wkx    -
  8529. x%~Kl
  8530. Ja5aG
  8531. )Z{C,f
  8532. @3rI,
  8533. .^]+s<64;
  8534.     ClTP
  8535. 2aJ>J
  8536. ^ZlZS^ZY
  8537. +,W)+
  8538. 4TcrZ
  8539. )_r@{G/*
  8540. ]]@7\M>^,@
  8541. 4141441
  8542. #    ~.N
  8543. 44Lk(
  8544. Ty2JyG
  8545. Jlttu
  8546. 252tY,t.
  8547. ?[.,4P7
  8548. 3.`6]
  8549. Kk52J~Gu
  8550. sZs S
  8551. nr+o,,W{,
  8552. >cU92%
  8553. 43TN^
  8554. =W()P(y
  8555. Cj2^~Gy
  8556. BAC.t.
  8557. ?|CWn,,TP
  8558. ((.ZS
  8559. :@l0    
  8560. %11>611
  8561. T$xT}
  8562. }/.F3
  8563. 3(yC2
  8564. .,B(tt
  8565. /bq>nq-o
  8566. 165#3p
  8567. o+3\-
  8568. .y32lm
  8569. K/G.uA
  8570. -jkx}
  8571. A.+b-]q
  8572. \-lM/\_.M
  8573. C@T.X%
  8574. V(2rV
  8575. yG._!
  8576. ;?k-y-y 
  8577. 3~}C}W
  8578. /|j<jCP
  8579. BW3ux
  8580. ayB.S
  8581. -TuP5
  8582. .3\lrr,
  8583. _)!pN
  8584. CP+xy(
  8585. n$blr63
  8586. 4L7j?
  8587. TLCL/7
  8588. -T S  
  8589. ,xyxZ
  8590. B,0CbC
  8591. ^]>l!
  8592. 0+Ybo
  8593. 6nnTn{
  8594. 4-4gn
  8595. 4%*$csfC
  8596.  x(<|ruV
  8597.  kZttYYf
  8598. ^]]   R  
  8599. Ux3xZZ
  8600. ?.P@n
  8601. ws_lcc
  8602. 6U%,(3]
  8603. >4>;11
  8604. %=c    =2k
  8605. +7a]q
  8606. PW)xkyy1
  8607. Zm hBZ
  8608. .S   _
  8609. /%VBV
  8610. ].742/
  8611. y<T2rU
  8612. N+Asi]+MI
  8613. >44>4;
  8614. ZT}o/
  8615. ,W(Wxx
  8616. t%k3Y/3Ym.]BU ]]    -
  8617. CuCZWY
  8618. #5%"$        TT
  8619. A@776+
  8620. oe*/?
  8621. j2YB.ur.Vl
  8622. ..]S 
  8623. :3%$#3
  8624. oo7r.n77
  8625. )~u>,xW4
  8626. ?6$1T
  8627. Tl,uBB,r.Vs
  8628. +(TZ!
  8629. n$#3#7o
  8630. YI.@@7Y*
  8631. >xP2AOf
  8632. rn    5><
  8633. B(kTTj
  8634. kk3/j3
  8635. Px}y,F^!
  8636. 1%)nD
  8637. l<4;>
  8638. JAO7+kj
  8639. 7aa}*a
  8640. 2,JBT
  8641. IgK774
  8642. P/,Y.
  8643. s!-!^,-!^
  8644. ;C>>x
  8645. ,(QyPQ  
  8646. /FHW=
  8647. x///uWWS&+
  8648. *S(SX!n:
  8649. 6.rs3$
  8650. K{|3S
  8651. bc-4><44
  8652. >53    f.
  8653. IfYPjD2
  8654. |y<        
  8655. >V,mxY~Q
  8656. =WTWZW///
  8657. s.Ao@3
  8658. 3Y.o7
  8659. yPU,    (F
  8660. 4>4>4
  8661. 5#=$-p
  8662. ?,y~TCk?j
  8663.  X !-^
  8664. |.LKBCx 
  8665. Suru 
  8666. //Z/u
  8667. o@@nY.r
  8668. *dmBC
  8669. -z^sv]
  8670. S] ^ S S 
  8671. Y?o+(j]t|X
  8672. /.Z//
  8673. lXE=>
  8674. IIzIb
  8675. zabz1C
  8676. 55azN
  8677. 1"H0HIH0
  8678. IIIa]6I1
  8679. 3@7m]@+mn
  8680. 1)&iD
  8681. wzEgg5>67
  8682. ./\.:@:w
  8683. xxxt,.!
  8684. KRrU!?
  8685. .:]nd
  8686. Qky6-(#
  8687. @3YwYZror
  8688. -"3i0HC
  8689. |qr~X
  8690. &6~uo.+6/,
  8691. b^s0]Y
  8692.  Zu S
  8693. n/~^YA
  8694. !X>>H
  8695. &|+|T
  8696. SumYm>W
  8697. %F|UrxqUT=
  8698. Ao.@@
  8699. ?)Gqyl2/
  8700. |H3046
  8701. ?q,/.|
  8702.  ?0jyJA
  8703. LR|E9<
  8704. &q(JT
  8705. +@q-B1
  8706. ,    !!/
  8707. #a6a6zb
  8708. "HaMH6
  8709. 5>%5>>
  8710. C>[Z2
  8711. GsS]St
  8712. ~YT$ry
  8713. %V/<//
  8714. \qE|2
  8715. (+(}x<
  8716. 3f<6<4
  8717. )+WxQoCl 1??
  8718. -TQrx&
  8719. +)+SxqW,
  8720. L)~yPC|
  8721. ]mn.pM.
  8722. W010/,*/
  8723. 11 ]X
  8724. T++PW
  8725. </<!    
  8726. 6Y@07
  8727. G[STk)x(
  8728. 0".cSN
  8729. q+XuLP
  8730. oP+r?,
  8731. Jxxxxy./,X
  8732. +}|:%
  8733. %"0TmQS
  8734. x.,<0
  8735. 6,<W<
  8736.  +rZJTf,7r
  8737. -BUg%B"
  8738. m%|oq:)
  8739. x~>>46<
  8740. !0Y3Z7
  8741. SUm(,
  8742. ]!.YY!X/<
  8743. y/</XY3!!
  8744. =/!/!
  8745. ,//6,
  8746. nxJ^j
  8747. ]C_-SS
  8748. LW,By
  8749. ;1--/
  8750. xxyVx
  8751. //</!
  8752. Ynj.n
  8753. !Ss^L
  8754. )Fq>C|
  8755. W+i[%
  8756. 677+3
  8757. o|Zq/
  8758. Q&+#;
  8759. 3KxjQ(
  8760. Ox.C((U2
  8761. 76v77n
  8762. @F@23t
  8763. >[|SWO
  8764. LSQn=>;
  8765. X260@
  8766. Xkx|6U,
  8767. ]6vY]1.n
  8768. TJJm9A?
  8769. \z4< ;<
  8770. S,E/0/"
  8771. Hx-}+
  8772. @Y.o@
  8773. SSsBB
  8774. >?,}BW
  8775. /L|x<
  8776. ^3Z%'
  8777. 143Pk}
  8778. 34_ssXP(
  8779. EEEEE
  8780. ~,oc~
  8781. ;:|Z7Tf
  8782. Ux|A(
  8783. ~~s@N
  8784.  RR?L M
  8785. |O(n:>
  8786. x"{<V<
  8787. )XC{%
  8788. _ RRR
  8789. `nb{.54
  8790. ./xm,=H0/
  8791. /<.V=
  8792. .ji{j-V{).
  8793. 11R3@L.?[?
  8794. .bNo]
  8795. /%.0W
  8796. 3j{{{m
  8797. wn+77X
  8798. "^-sM
  8799. /V030Q
  8800. %QH2U
  8801. rA?srro
  8802. .rrA^@M
  8803. /.Vx{/.
  8804. A\e,1#
  8805. ,}        #
  8806. EEE,EE
  8807. ZD\Z,
  8808. .[[./B
  8809. ,,/EE
  8810. ^r@or]
  8811. nsB@N
  8812. yu3G-
  8813. ^S?^R
  8814. ,,|o    2
  8815. O..@l
  8816. <    #jkB3/
  8817. ZEE-EE[
  8818. v..[/
  8819. *2rw,
  8820. zN1614
  8821. 114;4;4
  8822. j{{+j
  8823. {j{x{x-{
  8824. l-P@:P
  8825. 2KSv:=%
  8826. qo@/[X7.6X7nn
  8827. >jrrW
  8828. o2^H2P_!l
  8829. Ht;R1
  8830. )C9nD*
  8831. fT2S(:U(Y
  8832. [[..u
  8833. np^r@Y]Y,
  8834.  N^@X
  8835. }e7/T{
  8836. [EE..E\[[.[V
  8837. Nb^.N]
  8838. .+2k*.@
  8839. A!sno76
  8840. 1+}/7
  8841. ./.].
  8842. Y7}k}oj
  8843. Z3[B.HB.v.[
  8844. .B[.[.
  8845. 10~I0X73.2
  8846. x+|++(mSPT
  8847. ]j?$    2
  8848. 0\[[HB[vxV
  8849. -CVHo
  8850. ic0c\o
  8851. @MrAqr
  8852. 7@@ro 
  8853. !Zn    lcUc-c?\7
  8854. 441>1
  8855. VVBBVW-/V\\\0.
  8856. @brpr^r.7
  8857. e\@B^
  8858.     #549444>11
  8859. l3 Nr
  8860. /-BuV
  8861. -CVx,[.[\H\00E
  8862. ]6XYM
  8863. )XU{%
  8864. m?=b3b=
  8865. -x|{U
  8866. /3 Co
  8867. N0@n,
  8868. V1,6.
  8869. <<p cNc#
  8870. Yc <534=4
  8871. -.-v-
  8872. N^^]0...*
  8873. "?/1?$.,
  8874. EE[0Z
  8875. .@\b.
  8876. Zn nb~/
  8877. F)@T*
  8878. .Uwv{
  8879. nnnncNopM
  8880. YW-#.
  8881. -<%,<
  8882. E[./,u-l
  8883. BV.v,W.B[.Hu
  8884. -2\.W
  8885. cn$$<9416
  8886. {{{{{
  8887. 712kC:F(
  8888. ng:on
  8889. B.[[,
  8890. ..[[VZ
  8891. 7@r1>^r
  8892. x{-{{l*
  8893. Q*(&(
  8894. .{.vx{VVl,
  8895. [..[.,[E
  8896. EEEEE
  8897. EE00E
  8898. Nb$ co
  8899. .=kx"'
  8900. Y<LKa
  8901. -2(W,L
  8902. n.@on
  8903. **U(**(5
  8904. P(5<*)
  8905. 5]Hz4
  8906. 4%!l0
  8907. #$C4s-^2e
  8908. .Vlml-Vu{,
  8909. l,3\E
  8910. /..,[0
  8911. EE0EE
  8912. CJ3%*e77
  8913. /E/u.
  8914. //E[00\
  8915. .oyy[x
  8916. \YcoT3N$w
  8917. 3&m<(sY
  8918. MMcCn
  8919. q3!^bt
  8920. g~TJ}7+-48
  8921. XH5kH
  8922. ZE/..
  8923. /0l3Z.l.
  8924. v.v[.
  8925. .[EE[
  8926. v,,[..EE
  8927. Yon6n6J
  8928. 2s3!4
  8929.  ~H}O]H
  8930. "0L 21;
  8931. ;1< LP
  8932. EH.[V
  8933. V{Byo
  8934. v.[..Z[
  8935. Z0EB0t,/.[
  8936. b=a6+Xo
  8937. 3%<=%#9c
  8938. x[B.xV{x{?{V
  8939. -/.0[
  8940. .0\E/
  8941. [...[E.
  8942. bro6+
  8943. 333sb
  8944. s3Cc<5;1
  8945. s:#04>>
  8946. xVox{
  8947. V{?{D{{
  8948. /[,[[/
  8949. W}eXw/
  8950. %%454
  8951. 4SBj<
  8952. xV{xV
  8953. ox{[\
  8954. [0Z./[
  8955. 45>466
  8956. 8<R52
  8957. All_3<4
  8958. n@o3c
  8959. /Eu.{xBx{[x.x
  8960. ZE000E
  8961. 314>44
  8962.     32<<%#
  8963. {r{V.x
  8964. EE0EE
  8965. 2I3bN9p30441>4
  8966. 4<-%<
  8967. $jWaYp Z3
  8968. 34582<
  8969. 3nn>cC
  8970. C.V\W
  8971. [0[0E0
  8972. EZDHE[
  8973. 4514=
  8974. VVlx.{
  8975. xv.{B
  8976. [./[x0VE./
  8977. ./u...E/
  8978. [0[0E
  8979. \E0HE[
  8980. E00EE
  8981. aa]zu
  8982. bu0IafzaaH0
  8983. 5H1Mzb
  8984. Maa""
  8985. 12I121I
  8986. *2_^KJ)
  8987. /)y-s
  8988. 5>%%<%
  8989. ]Nco8
  8990. }uCk?
  8991.     5%<:1%44
  8992. {VZ.x
  8993. ...Z0[.
  8994. ,D\EE
  8995. EEEE0EE\
  8996. 0E00E0E0
  8997. Fx-sA
  8998. <**/}/
  8999. ?C,XP
  9000. ^Np33"%%
  9001. %4#34%
  9002. 92    44;
  9003. %44%<
  9004. yxvVx-
  9005. ..vx,
  9006. v0\EE
  9007. auIua\0
  9008. vua0CH0C0\0a\00C
  9009. C0Ha\I
  9010. C0Hfaabz60
  9011. ]1]1I
  9012. ]zuaa
  9013. H\IuHC
  9014. ]aCavHH
  9015. 0C0CH
  9016. H6HIH5Ha
  9017. ""Ifb
  9018. fbMH"
  9019. I212121
  9020. ]zzIz
  9021. HuI0CD0
  9022. 00C0a]HzuIabuz0
  9023. 10"H1
  9024. 1I211111
  9025. ]zvtb
  9026. aC0D\\\1C
  9027. \\00000
  9028. fgzf"I"
  9029. ""#zN
  9030. ^X)Bl-s-->.^-RsQ
  9031. ,yV-    ?
  9032. 3.oNn$T    
  9033. 40< %%    3n#lo^
  9034. @ANs    .
  9035. "6ocY
  9036. 3% 4%54
  9037. 45345
  9038. bpn.4Bk    
  9039. {.x[{x.[/
  9040. ./B.!
  9041. <KG3t
  9042. Rs"lV
  9043. Pyx,        
  9044. 1%%53:
  9045.     ,(xY
  9046. .7Y}    
  9047. Z.u./
  9048. t--^ssss^-
  9049. M? --
  9050. U(Py,?
  9051. n]sll:
  9052. $%05%
  9053. >%1%%532
  9054. >11>149%%
  9055. 5144<
  9056. #o~qn
  9057. S.{/.[/
  9058. Ks]s-
  9059. ^3ssL
  9060. xxs)u
  9061. (PyU2
  9062. 4614 
  9063. %4534
  9064. cC^@7
  9065. 0-5'2%
  9066. %5#$Tbc
  9067. KvSS-3
  9068. =5lBS^
  9069. ^s-rs
  9070. )%yyj2$
  9071. 4nn^r7*
  9072. >6}B4
  9073. nZ%4<214
  9074. .N    #-
  9075. xK=L^s ]T
  9076. JK3.^s
  9077. nsr0*,}$
  9078. CR%    %1254
  9079. cwn0*
  9080. l^^R^SS
  9081. ^-sRyY-y3xt.^
  9082. 44;>44
  9083. M!S.g
  9084. 14>>6>
  9085. -csA.
  9086. C~46,ol3%%
  9087. .g,/!
  9088. SSSB^t>3
  9089. 614;>44>
  9090. 2    #33
  9091. 411>41<
  9092. 1%$C s]
  9093. {Ibl3rv
  9094. *Qss R
  9095. ,,(Kx
  9096. xL,)Px--x-U,
  9097. 54451
  9098. 11<44
  9099. k(xB)Bo%#
  9100. <%4045-
  9101. Abqor\
  9102. Q@X_R
  9103. MSSY/sZ
  9104. B2I6rc
  9105. 45044414
  9106. 44>>4
  9107. T$     KxlK
  9108. lj)--
  9109. --,$j
  9110. U$B}46]
  9111. 454<4
  9112. 25343p
  9113. ?Tu}|
  9114. 6Y@]6
  9115. <xVVT
  9116. kTOOf
  9117. 67^c:
  9118. >4><>>114114
  9119. 4454>40
  9120. 25<<-T3Cl/
  9121. 4C\\-
  9122. VP(,yr!
  9123. >4142    -7
  9124.     ?-$<
  9125. }~y<?    
  9126. ?U|4j
  9127. _Ncn7
  9128. %3843144:
  9129. 2<-c$!
  9130. -%>564
  9131. 61<4 133-:T
  9132. 1yB44
  9133. Z041>>
  9134. >46;;44
  9135. PB.@n
  9136. -,-y)
  9137. 4 153
  9138. 8>411>44%
  9139. <4<4450
  9140. /}j    <
  9141. ]a`00
  9142. 05a#z
  9143. 0"1H66abz6azfz
  9144. z6H"1"""
  9145. =#05%14
  9146. 4;>44
  9147. 45443#
  9148. srb2A7
  9149. x.xsb
  9150. .Y7.y
  9151. 433% 0
  9152. "#<44
  9153. Q2(Qr
  9154. n=T-05
  9155. >>>445
  9156. ?.>}Vk
  9157. n$#o0<#
  9158. n_c4nn:
  9159. 4-rlMrr7
  9160. =kQ@-x)x
  9161. !?kS|
  9162. c3C9C
  9163. WOB(L
  9164. 01bNnT:
  9165. 44<4>>
  9166. n#<5    %2%
  9167. xxb(y3^^
  9168. ,??%,1 "
  9169. (jkS3ae
  9170. ?kk3L
  9171. rY0>NnCrl
  9172. 1154:#
  9173. ^b2K,s
  9174. (jy|7ee
  9175. 0414><11414
  9176.     xBXLL
  9177. ^o20/n@
  9178. xj<T        
  9179. ?mmyKxr
  9180. xx.3~l-
  9181. +A0N_2@
  9182. Jj,/}L4
  9183. %5116
  9184. BCYWL
  9185. @roAN
  9186. bcn    Tr#    
  9187. /,W/.
  9188. mQyb.s-
  9189. <-32    
  9190. kBB,T
  9191. .@@Aw01
  9192. clT3#
  9193. 1>1;2
  9194. 11>>414
  9195. cbk\3
  9196. ~)}QjT--,
  9197. ,BJ{xBCkl(/N
  9198. %424    
  9199. .n7.^!CC
  9200. /4f4+3|P
  9201. ?<\xY|
  9202. \$        ?
  9203. UxPUU&??
  9204. L/fWL
  9205. Bp338>
  9206.     rcB@
  9207. -jj(BCW
  9208. 324%3044
  9209. %%234
  9210. $3T cl7
  9211. ,B},6
  9212. -$?6??
  9213. R,Ty?
  9214. 7n@..]
  9215. .qCg3
  9216. 1452=%:
  9217. 3Fcb^
  9218. Y^I^0pAl_#$
  9219. /32#33411>>1>
  9220. 4%3    k
  9221. 27@.I6
  9222. Rn$TcNr/
  9223. -"%"|l*D
  9224. 0C6H1\H\C
  9225. aHMba
  9226. \11aN
  9227. Naa66`5"1aMbfb
  9228. 566aNa6zb
  9229. bfgzb
  9230. bfNzMI10"1
  9231. bf6H5
  9232. "5#z5b
  9233. bzbz6#H"
  9234. b^rr.3
  9235. /W,~~B!jy/
  9236. ]x=??
  9237.      ?|~LW/BW
  9238. .rYo-1
  9239. ~q^NN+7.]
  9240. <}=V,
  9241.  -BVyyK
  9242. \kO4/
  9243. 41511
  9244. 435"#
  9245. k+o.b
  9246. +.NI+7
  9247. nlAll
  9248. *x UK/
  9249. 3B)W}
  9250. 4354#
  9251.     yj|YB)
  9252. \7YPP2+
  9253. 14>>>
  9254. 8>>>4
  9255. YpI+r
  9256. \jWL7>
  9257. 'n?No
  9258. a1aHIMbH0HIaz
  9259. aa#HMba6
  9260. gzH1"
  9261. 50"6HHz6a6a1a6z6zb
  9262. bzbzb
  9263. MNIaN
  9264. fzIMaI"
  9265. 51H6zb
  9266. fb6aM6a1"51
  9267. 1H"1M
  9268. 6ba61
  9269. ]M"C00
  9270. HDu6]I1DC
  9271. HbaIaII0C6azzNb
  9272. 6z6faIffabf
  9273. H01a6a6a#H#zIzN
  9274. Nfbza6HNz6M1HI0#
  9275. 6Iz#01H5"H"Izb
  9276. CIabzIz
  9277. H#uz6azN
  9278. fzM6zN
  9279. zbbH1
  9280. "51H6a1H5HI6ab
  9281. bfIba6z6a05"5I
  9282. 05Ifb
  9283. Nzaz#a1H
  9284. 1#aIfN
  9285. NIH11
  9286. bbuIaD
  9287. HHaaaaI0a6zaa6zz
  9288. az6zMbfMz
  9289. ""HH"HH6I6zb
  9290. Nba6a6aaHI51
  9291. a6Iz6zM#H
  9292. b61Ib
  9293. IC0D0
  9294. H0v\bzbaH10
  9295. 000HIz00Hza6zaIaz
  9296. zaa6zMN
  9297. H1"6zzzNzN
  9298. bza6azbz6za#z5#a5H"6
  9299. 5I#zN
  9300. 6a0HMHH"HMa6
  9301. IHI0C
  9302. 0000I\
  9303. 0D00HI00IHa\6aHMb
  9304. 6a#z6z
  9305. bz61010
  9306. "1azbNzb
  9307. ga6z06fIzH#aHIa6"H61"
  9308. 6z6"H#
  9309. b00Cab
  9310. 0HHzIauH00
  9311. D0H100
  9312. "5z6az6
  9313. bazbIH#a6ba10##a1H1"0H
  9314. bfaz6aI5H611H15bg
  9315. 11110"
  9316. zH0I0z
  9317. C1]a\
  9318. C0va6
  9319. bzNz10"
  9320. H6zIzbz
  9321. MIa65IaIa6I"Ha6aI"
  9322. fzffaI6HM0I5IzH65
  9323. -V/Y^-.L
  9324. 44UbC/7
  9325.     %-<-
  9326. .2Yb*
  9327. 24    2;44
  9328. 11111>
  9329. nA^?A+
  9330. ){((<    ?+
  9331. %4141<
  9332. ,]//!<
  9333. -)]MX
  9334. l.-Vs
  9335. .[%>>46
  9336. 2UoLi^Y03
  9337. +Iscsn7l3
  9338. >1442<
  9339. #23ccI@n^s.
  9340. (BW$+(
  9341. kjy,\
  9342. }.7@m
  9343. _<?,oP0N@
  9344. W2Bk~uT
  9345. 44;1;
  9346. >>452o
  9347. S/,//x
  9348. y!%!,!
  9349. )3bo)
  9350. yUmBU
  9351. ?Tx)f
  9352. 555#4<%%
  9353. 34342
  9354. 7+ZoC&
  9355. 3%429#
  9356. <11114
  9357. L(W(W)
  9358. yTA(y
  9359. U-<k(|
  9360. n03444>1;
  9361. ///.!2!
  9362. ]Q6/7(s]?
  9363. !P<3-
  9364. xx.x-S
  9365. 7434%5
  9366. 4<3%0
  9367. 5Z7xsx
  9368. QY-yU
  9369. btm3,
  9370. TQxxs? -ss,
  9371. 4;4><%$
  9372. mllrNc
  9373. 244054004
  9374. 2841114
  9375. 44:nnC
  9376. W(BBWP
  9377. .Y0r~
  9378. pCcc{
  9379. >NYM^2
  9380. e4W{)|k}.\<
  9381. $#444
  9382. /xxuZ,
  9383. -)Rksy
  9384. x-K53
  9385. BsNNLZcl7@^
  9386. @3l2bNs
  9387. <8#5-%45%    5
  9388. ~|k(W
  9389. 0488114
  9390. ,?W)P
  9391. w.PrN
  9392. ~byrn
  9393. 3uKKt,^--
  9394. ;16;>
  9395. +Y37f}
  9396. 25#52
  9397. ,~W|((W
  9398. 222424
  9399. <44>414
  9400. \@NUcnrv:l
  9401. 3)!LBJ=Qx
  9402. ;111>0
  9403. 0$2%        
  9404. 6    34035
  9405. %4%*$T
  9406. 440114
  9407. R~TWPj~PX
  9408. 4,+7/
  9409. ^nHpcn4
  9410. 3W(B4W//
  9411. /x<+T*(
  9412.  ?k-- --")Rb
  9413. .s- -- 
  9414. <1;>11
  9415. 5<:-5#
  9416. ~jkjL4
  9417. 4<2<%
  9418. 2-Tc6$
  9419. cN^7/
  9420. TuW((
  9421. ///0!0
  9422. 3lt K^----lx
  9423. mVsRbxBVxK-
  9424. 467@b2
  9425. <11>>141%%bpn0
  9426. :4204
  9427. L//yBy
  9428. +wP]@
  9429. ]w\NN$
  9430. 6402"
  9431. -@|yx_)J)
  9432. ./^~Pk
  9433. ]jTy7CS*
  9434. ]627@+
  9435. ~Cc~1
  9436. y]>X=
  9437. 2P!"V
  9438. 3)yy3
  9439. KWUs2.T
  9440. <R*H)-
  9441. %%#:R-Hz*G
  9442. T}j*TQY
  9443. %%aa%%
  9444. QJVBs-.As
  9445. sxK<txK%Y.K
  9446. :wHY]+
  9447. Z9#5T<
  9448. z1K$o
  9449. SLWLyT/W*
  9450. )SX+*
  9451. 00HH00\IHz
  9452. CHbbz
  9453. bzfMabMb
  9454. bz6bafbbz
  9455. bz6aaI51"abg
  9456. aNHbbNbzIzHIaI6
  9457. bHIa661aabf1HI
  9458. z6HIM6zIz
  9459. bIHI#a#ab#"
  9460. 111112
  9461. 111111
  9462. a0b0D
  9463. a56aM
  9464. Iz6a51HIN
  9465. zbH0I
  9466. zbNz660#zHb
  9467. bbz#HIH1a#NaIba5
  9468. Naa5MIa6
  9469. I51a5I
  9470. 11111
  9471. 11111
  9472. bazb0000
  9473. aIafb6fNzzffz
  9474. zNIz61aIM
  9475. bbaIHzIzgIzIHH6IH6zaIzz6
  9476. bz6zNb
  9477. H#I0651""1
  9478. I11111
  9479. I6II6I6161I1I"1I6
  9480. bzzzbbaH
  9481. \1H\1
  9482. a0a0aHHHzb
  9483. Nfz6zzz#zMbafb
  9484. bzNfa"6ab
  9485. b6HI6zbbN
  9486. bbM#abfaNaN15aIbz6
  9487. #06H1511"1
  9488. 121111I11
  9489. bzbzzzz
  9490. HD0aDa
  9491. 6HHfazbIzI6
  9492. z65aa6Mz6
  9493. 5aIaIzN
  9494. a15zbMzzbzbaINz6baNHa
  9495. 6zbIzN
  9496. bMI510
  9497. H##H51HII"HI"
  9498. -slBx
  9499. RQ>PeWK){)2
  9500. #1414
  9501. ),L/4
  9502. @]/.n
  9503. .7.^@
  9504. NY:44:4442<42
  9505. 1>111
  9506. 33~bCCN^pA
  9507. v]T%!.    =.V
  9508. ,///////
  9509. H]z\IH0005
  9510. 6MIH6aIaN
  9511. bMIazbaM
  9512. bzbbb
  9513. bbzI6z
  9514. 6#11a
  9515. 101#1HIM
  9516. HHH#aH
  9517. zNbba6ab
  9518. 6a#zb
  9519. a6H##H
  9520. 1H615I"1
  9521. 10HH11
  9522. 6zHaaz
  9523. gbbaN
  9524. #1HI0
  9525. II1#H#1HI"111
  9526. ba#HH
  9527. 05#zfb
  9528. fbaMNbfbg
  9529. Ia#ab
  9530. 01I151#01H#I1H
  9531. PoA7*V+/)
  9532. eWkUy
  9533. Y\+Nn77
  9534. o+cFI
  9535. 444044
  9536. <0144
  9537. sCUbcc
  9538. CYY]P@
  9539. .^]NiCNc!]
  9540. c4Pr7
  9541. B.yVB|xV/
  9542. b0HzN1
  9543. H6zbz
  9544. "Ia6aHb06
  9545. H1HHaN
  9546. gIaNzb
  9547. bMz6011H6a#D
  9548. ba6az
  9549. 1"16""1##
  9550. rQ'\3I
  9551. <%2<T3C
  9552. 3%    #2 
  9553. )Nc_v
  9554. +X3}/,
  9555. ,6X2     ,2
  9556. CHI]III100HH
  9557. IHaI"
  9558. CH"af
  9559. bIa6Iz
  9560. b5a1H
  9561. 1H11"101#H1
  9562. SWTX!/
  9563. BO.n20@n
  9564. k.2,6
  9565. 0#afbMbH6Ha#
  9566. H60I"11511
  9567. {*~jy| J.s! 
  9568. Uj.fe
  9569. 4>2R    R
  9570. \++lrn-Cb#
  9571. 8<054414
  9572. 4414>4
  9573. ^HroCLYZ
  9574. N^Y,7.
  9575. d==VX/</
  9576. /"<,]V%~
  9577. :%012
  9578. "k!\    U
  9579. j~(U.
  9580. .Y+@^
  9581.  4>421#32
  9582. 444<44
  9583. r+c>k
  9584. 3~BW(|~f(7(
  9585. k~QU]
  9586. oC<311>
  9587. 0.Y2@
  9588. 04%:14144<44
  9589. L*R3dW
  9590. /L    W7
  9591. yyx-U^
  9592. :<5114
  9593. 44-:-
  9594. 77@@n@r
  9595.  4444
  9596. 44484
  9597. RnbUr
  9598. ?,YYo+
  9599. LyxyB/
  9600. QbNzz
  9601. f0gHbcb1
  9602. xT>S -,S
  9603. ZI+I0
  9604. p{:7g
  9605. 44%<40-
  9606. 7Y^{H
  9607. ?~ 1.
  9608. j,>F.
  9609. --,^ -
  9610. ]o.\^o
  9611. 3#3-%044
  9612. 44<44%4
  9613. 41234
  9614. 44414>;4
  9615. 1444<144>14>442
  9616. .7oA6oN
  9617. :#RR%
  9618. %##4#
  9619. WkB(Pn
  9620. j/,T6
  9621. 9L(-^&|?-
  9622. 4<4<0o
  9623. 44444
  9624. 44044
  9625. r0HH/
  9626. H63nc~p
  9627. HoI/7@
  9628. !-y+X
  9629. v9S3 
  9630. rnji_^m61^
  9631. *NRjy]
  9632. x,"}/U
  9633. v_poZ
  9634. %2<444244:414
  9635. 114;>
  9636. 444142<4
  9637. 111414
  9638. 4<142#T!
  9639. fAjxx
  9640. ,~oWj,kky<
  9641. <k~P|j
  9642. !00EE000E
  9643. x n|>
  9644. 64>0'4
  9645. 44441
  9646. ?srb?R
  9647. %14<4444444
  9648. #4]ojs
  9649.     y,y6j
  9650. </,<</?=.
  9651. HfIK1
  9652. ?/.6?
  9653. W,6-]
  9654. /-%?<T
  9655. #141>
  9656. #4  5244
  9657. 945444
  9658. 11114
  9659. 61414
  9660. O06+e3
  9661.     $!2,.$<<
  9662. x,k/<,-
  9663. ysMc@
  9664. -!!-Vx=VB
  9665. <44%0
  9666. 4%%33
  9667. #0324144
  9668. >141444
  9669. 444244
  9670. <#    6,?                
  9671. lP=,/,=
  9672. ]V.WTTy%
  9673. ?-P@-
  9674. /C(4e
  9675. 1;1>1>14 %
  9676. <4442%<<4%3#
  9677. 1444141
  9678. 41144
  9679. 444214
  9680. 44444144>44
  9681. k}~L~/WY
  9682. ?,,$X
  9683. />y/y|TT
  9684. ?.yk/
  9685. e3@l>
  9686. <;;1;14
  9687. 2#403
  9688. 2:44%4114
  9689. 44444
  9690. 14>41>4
  9691. 1444>
  9692. 61>1449414233
  9693. 441444
  9694. 44414  
  9695. 6.,%%j
  9696. <//Byx
  9697. 42%T%scP
  9698. }.@-g
  9699. 4>>><
  9700. 111>4
  9701.  1441
  9702. 414144
  9703. 1144>4
  9704. 44<411252%0
  9705. 44441>4444
  9706. 2;%#co.
  9707. (WP~V%
  9708. %414>>>44144
  9709. 424-04#<40
  9710. 4%<4%544
  9711. >11>4
  9712. 44144>14114941
  9713. 414144>14
  9714. 411144
  9715. 40411
  9716. %4111>>
  9717. ,jk}~VWY
  9718. 441414
  9719. 4%%%42
  9720. 422504404
  9721. ;1411
  9722. 4114<411>44
  9723. 41411>>11>11144
  9724. 441414<4414>2
  9725. Pk|B)~j
  9726. /?"<,
  9727. ?2            
  9728. },+>    
  9729. "%44411
  9730. >;4>41
  9731. "UL(|
  9732. 314>>
  9733. %5 444444
  9734. 0414144
  9735. 44>;1
  9736. <>4;;11
  9737. 40<4<46
  9738. 144>44
  9739. 44042
  9740. Cx}BB
  9741.                 $    ,    
  9742.     <.                2
  9743.     ,?>    
  9744.  414144
  9745. rn    #N
  9746. 2r{3 1><
  9747. 44444
  9748. 5114144441<
  9749. 444;4
  9750. <>4>111
  9751. 114>>441%
  9752. cYP+n
  9753. >WB|(nPB
  9754. kW(Pky
  9755.                 $
  9756. <    $<<
  9757. 24 11
  9758. 6111144444
  9759. ..7n6
  9760. 44442
  9761. 441540%
  9762. 14>4>
  9763. 4>>14
  9764. 111>;4144;4
  9765. BTPOj||B<
  9766. kWTyk
  9767.     .<<.    
  9768. /,//yT
  9769. 414>164
  9770. 11114>444
  9771. mMwon 
  9772. onCcc
  9773. 454>8
  9774. >>>>>6
  9775. 241414
  9776. <2>10404
  9777. 4>4111>4;>44
  9778. 64141
  9779. 44124>414
  9780. 41;11
  9781. 441441111
  9782. |P{PYB
  9783. !Y,./
  9784. </?%W.
  9785. @]]n- 8<
  9786. 411>11>4
  9787. 4114>>44
  9788. G-1T)%
  9789. 24;4:
  9790. 2jCky|
  9791. CX>2)
  9792. ?=1/-
  9793. [kj|We
  9794. .    2446
  9795. 44144
  9796. 44441414
  9797. 44>>4>6
  9798. 91>414
  9799. 411114
  9800. 4414>4
  9801. |WWLj,WW7
  9802. /,%x~,xVx/U
  9803. %<4441
  9804. 4;>4;>6
  9805. 1;4>>44
  9806. 443y445
  9807. &|}|L
  9808. @]_Y32441
  9809. 141441
  9810. 4114>4
  9811. 41111
  9812. kj~Wj)
  9813.  ,] $
  9814. $V2V$
  9815. 22$?<,
  9816. 4>1111
  9817. 4;>164;4>>>
  9818. 414>14
  9819. 5&ro$>
  9820. 652<<    c6.].
  9821. v`))V,?
  9822. ../_c
  9823. 1;1>>><
  9824. 1>44410
  9825. 4414141
  9826. 11614
  9827. 4441144
  9828. 441114>4
  9829. 22 $j
  9830. PL)XN
  9831.  5444>4
  9832. 4>11;4>>
  9833. 114>>
  9834. >41114
  9835. r/63].
  9836. <?    xWk,
  9837. 44441
  9838. 414110
  9839. 411114
  9840. 44444
  9841. 14114
  9842. 44;11141414
  9843. ((/3j3L
  9844. .6V6    
  9845. $/,yxj
  9846. ]V</V\!
  9847. n.% 154140
  9848. 44;>>>>164
  9849. 1>4>1111
  9850. ?}~k,
  9851. 111;41<4
  9852. 4;44>111;11
  9853. 4;4;412%
  9854. ?<</?
  9855. 3++LY
  9856. $V+/\$!?
  9857. ;441110
  9858. 1414>4>
  9859. 111;>
  9860. 4111414
  9861. 414414
  9862. 44>4012
  9863. 41411>
  9864. >1414>>4>42#
  9865. y~C|WBWWWB
  9866. (WLW*
  9867. T4W3(~
  9868.         \<?/,,
  9869. 4<111;>14
  9870. 41411
  9871. 5#%1<1;4
  9872. 11111
  9873. 11>4>;454
  9874. kk(kTWWY
  9875.     2    ><
  9876. %\/    ,
  9877. -414;46
  9878. [@sr'
  9879. P/x%+/
  9880. jkTWkjW(n+W3{
  9881. 1 $    ?.
  9882. /-"(x
  9883. 14;46
  9884. 7rmR>
  9885. s+.@.
  9886. 044>4
  9887. >>11414
  9888. ;1>>16
  9889. 4114111414
  9890. 1>4114
  9891. 44411144
  9892. 44>4>>
  9893. ,k$/V.
  9894. xkWWnj(|
  9895. LLWW}y
  9896. 511>414
  9897. 41;4;21
  9898. 441411
  9899. \~,WW
  9900. 114>>
  9901. 4>114
  9902. 14;>1
  9903. 4111;4
  9904. 1;41114
  9905. 441111414>>44
  9906. y<k,,
  9907. 4(~x,
  9908. 84;>4>11
  9909. 14114
  9910. 414411
  9911.     -        ?
  9912.      UWn
  9913. 3^p?4
  9914. 4>>44>114>
  9915. 64>>441>
  9916. >1;1;>4
  9917. 1>>11
  9918. x~WjC
  9919. l{2    2444
  9920. 444>11
  9921. 41144114
  9922. /37s<1
  9923. -,Cn)BL
  9924. N>44r
  9925. >;6<>
  9926. >4>>41
  9927. >114>
  9928. 1414114
  9929. 42"#os7.eeY|nky
  9930. yWkxy
  9931. 4114>1>
  9932. 414114
  9933. 114<4
  9934. 0.5g0*6
  9935. >>>4111
  9936. >>114
  9937. 1111114
  9938. ,<        <
  9939.         =,!,/yjK
  9940. /LWWyx
  9941. 6?6|{+.A
  9942. ;44>1>>4414
  9943. n<4"#
  9944. <444;>>
  9945. >>>>116
  9946. >4>4;4;4
  9947. 14>116
  9948. /N*Bk
  9949. 6.k~y
  9950. !,<xx
  9951. TWW~y(
  9952. +STB}
  9953. 144>44444>>1114
  9954. 44444
  9955. MX!fF    
  9956. 5f9-4
  9957. R<64>4;
  9958. <44;<44>
  9959. Q3A{~x
  9960. ky?=U%
  9961. %,6?|
  9962. C/6E-
  9963. 9?7UTlE
  9964. 2(i>DY
  9965. >>14;
  9966. 14144
  9967. 14>>4
  9968. x(%X\%kj
  9969. YLBW(jW(
  9970. <        ?|
  9971. I7WnE}
  9972. cC#32>44;14
  9973. 44;1 11
  9974. <k)V7,
  9975. 4>1;>
  9976. 411>4
  9977. 6>4441
  9978. (~y|Vk,    V6    \
  9979. T(L+(/W
  9980. e+WY+
  9981. +C4-24444>11
  9982. 44<4444>
  9983. %144>44
  9984. r3.npH*C
  9985. @72rP]
  9986. <8;>8
  9987. 44>14>>4
  9988. 41>>6
  9989. 1>114
  9990. >>11;
  9991. 01%4W
  9992.     >\U+%<
  9993. +W~WWBWWWBL
  9994. g$R>4-R
  9995. 2?!>k}
  9996. 4141114
  9997. 41414444
  9998. s=>cw
  9999. %4"4>
  10000. Y.p>nn%
  10001. 611;>4>>;44>>11>>;1>111;4
  10002. 11116
  10003. %%cn^
  10004. /(+/(WYjk
  10005.     ?6,6    .
  10006. /    >y>
  10007. (OP4SLa
  10008. 44111
  10009. 4141441
  10010. TQym,(
  10011. 4146>
  10012. 4<1414;4
  10013. >>>4;11
  10014. k~W\./
  10015.      >3!
  10016. T3TW(|}|
  10017. CYYP~y
  10018. 66>4"
  10019.   %44>
  10020. 11144
  10021. field id 131TAIL
  10022. field id 158TAIL
  10023. field id 178TAIL
  10024. field id 191TAIL
  10025. sound id 193data
  10026. AIFFCOMM
  10027. CxBz-
  10028. :O2g!
  10029. %h.D!x
  10030. ).%B(3$G!V [%B2
  10031. e$G'8"Q
  10032. $"!4 :
  10033. 9c6x%
  10034. 3X9(<
  10035. .P+k4
  10036. &p'f+>-*1
  10037. )R%z$
  10038. "t"t$^$^
  10039. $^(2,
  10040. 8w:a/
  10041. !\& & )
  10042. 4l7H5`$8"P%,)
  10043. S",!9
  10044. #z&G'6(%$i"
  10045. "f$B"f
  10046.  g-].J,p1
  10047. ,p0$#.
  10048. 6d9(1
  10049. V&d)"%z
  10050. $h1&6
  10051. #X#X&
  10052. *i*i,7-
  10053. ]!c+P&
  10054. 0N132
  10055. 54+s/
  10056. =/;i2
  10057. -9&!$[%>"
  10058. /v8@<
  10059. >g@)@);
  10060. )O(n%
  10061. $    !f$    +
  10062. !f$    $    "G
  10063. &T&T!
  10064. 5#.+(
  10065. #e#e$B
  10066. 8v9Q5
  10067. ',-" \
  10068. 0Q/x4
  10069. $s%L&
  10070. &%%L'
  10071. ]$s$s 6#
  10072. /@3x7
  10073. e#F(P'y
  10074. p    =    =
  10075. 'J+x2(=
  10076. x$p.`7|9$9$9$:
  10077. !_!_#
  10078. #^$# K
  10079. /    W    W
  10080. &p&p 
  10081. !s&:)
  10082.     6    6    
  10083. p    [    [
  10084. M    ]    4
  10085. fSFX!
  10086. %INFO
  10087. Printing bkgndBMAP
  10088. DTAIL
  10089. &INFO
  10090. PupTest print1card
  10091. bitmap id 1data
  10092. 5UUU`
  10093. 0V1f0
  10094. 0V1f0
  10095. 5UUU`
  10096. 5UUU`
  10097. `dLXQ
  10098. 0V1f0
  10099. YTAIL
  10100. field id 3data
  10101. Copyright 
  10102.  1995 Telemark Productions   1TAIL
  10103. (INFO
  10104. PupTest print2card
  10105. bitmap id 1data
  10106. 5UUU`
  10107. e0e02
  10108. p8p8=
  10109. 8)f9@
  10110. 5UUU`
  10111. `bL(`p
  10112. 1$pg1
  10113. 5UUU`
  10114. 5UUU`
  10115. 8)f9A
  10116. 5UUU`
  10117. bRJI 
  10118.     JLJBH
  10119. II%     J
  10120. field id 2data
  10121. Copyright 
  10122.  1995 Telemark Productions   2TAIL
  10123. *INFO
  10124. Comp Table printcard
  10125. Comparison Tabledata
  10126. MOCELL10
  10127. Looks
  10128. medium
  10129. medium
  10130. medium
  10131. fluffy
  10132. Barking
  10133. a lot
  10134. Training
  10135. advanced
  10136. very easy
  10137. Exercise
  10138. moderate
  10139. moderate
  10140. Grooming
  10141. v. little
  10142. little
  10143. Prof. Grooming
  10144. elaborate
  10145. Docking
  10146. Novice owner
  10147. Dominance (primary c.g.)
  10148. Dominance (2ndary c.g.)
  10149. Friendliness
  10150. reserved
  10151. Independence
  10152. middling
  10153. depend't
  10154. Children
  10155. older/eld.
  10156. excellent
  10157. Other Pets
  10158. Outdoor Space
  10159. small
  10160. small
  10161. Climate
  10162. moderate
  10163. Handicapped Assistance
  10164. hearing
  10165. Jogging
  10166. Hunting
  10167. Sighting
  10168. Tracking
  10169. Retrieving
  10170. Pointing
  10171. Herding
  10172. Watchdog
  10173. Guarding
  10174. Companion Dog
  10175. Search & Rescue
  10176. Water Rescue
  10177. Guide for the Blind
  10178. Snow Sledding
  10179. Carting
  10180. Weight Pulling
  10181. Agility
  10182. Lure Coursing
  10183. Competitive Obedience
  10184. Schutzhund
  10185. Tricks
  10186. Attribute
  10187. Ideal Dog
  10188. amereski
  10189. ATAIL
  10190. +INFO
  10191. Grooming includes brushing the coat, clipping the nails, brushing the teeth, and cleaning the ears.
  10192. Short haired breeds require much less coat grooming than long haired breeds.ADDD
  10193. GroomingTAIL
  10194. ,INFO
  10195. Cost for professional grooming may range anywhere from about $18 to $100 depending on how much work your dog's coat needs.
  10196. Some groomers include 2 shampoos and a creme rinse, nail trimming, ear cleaning, and anal sac expression in their grooming package.
  10197. Professional GroomingTAIL
  10198. -INFO
  10199. OK Updata
  10200. bbbbbbb
  10201. [ZWWW
  10202. WO555
  10203. ZZZFW
  10204. WGGGXWP
  10205. HHKKT
  10206. H5555
  10207. HHH*54
  10208. OK Downdata
  10209. """Mooo
  10210. [ZWWW
  10211. """Mooo
  10212. WO555
  10213. ZZZFW
  10214. """Mooo
  10215. WGGGXWP
  10216. HHKKT
  10217. H5555
  10218. HHH*54
  10219. OKSCRP
  10220. on mouseUp
  10221.   show card bitmap "OK Up"
  10222.   hide card bitmap "OK Down"
  10223.   dismiss
  10224. end mouseUp
  10225. on mouseDown
  10226.   show card bitmap "OK Down"
  10227.   hide card bitmap "OK Up"
  10228.   repeat until the mouse is up
  10229.     if the mouseloc is within the rectangle of me then
  10230.       show card bitmap "OK Down"
  10231.       hide card bitmap "OK Up"
  10232.     else
  10233.       show card bitmap "OK Up"
  10234.       hide card bitmap "OK Down"
  10235.     end if
  10236.   end repeat
  10237. end mouseDown
  10238. field id 3data
  10239. There are questions you haven't
  10240. answered on other pages.
  10241. Click "OK" and I'll show you.TAIL
  10242. .INFO
  10243. CTAIL
  10244. /INFO
  10245.     Wait Cardcard
  10246. Wait Messagedata
  10247. Please keep in mind that the results are only recommendations.  Probably no breed will exactly match your choices.  After comparing the top breeds on the list and consulting with various dog breeders, you should be able to choose a dog that will be very compatible.TAIL
  10248. field id 7data
  10249. Please wait a few moments while
  10250. I consult with the dogs . . .TAIL
  10251. 00000
  10252. 00000
  10253. 0,000
  10254. 0,0000
  10255. 00000
  10256. 0000000
  10257. ,00000000
  10258. 0,000
  10259. 00000
  10260. 00,00
  10261. 00000,
  10262. 0,,00
  10263. 000000
  10264. 000,0
  10265. 0,000
  10266. ,0000
  10267. 00000
  10268. ,0000
  10269. 000,0
  10270. ,000000
  10271. 00000
  10272. 0000,00,
  10273. 00000
  10274. 00000
  10275. 00000
  10276. ,0000
  10277. 0000000
  10278. 0,000
  10279. 000000
  10280. 000000
  10281. 000000
  10282. 00000
  10283. ******
  10284. 00000
  10285. 0000000
  10286. 00000
  10287. A000q
  10288. 0000000
  10289. 000000
  10290. 00000
  10291. 00000
  10292. 00000
  10293. 00000
  10294. 000000
  10295. 0,000
  10296. 0,0000000
  10297. 0000000
  10298. 00000
  10299. 000000
  10300. 00000
  10301. 00000000
  10302. 00000
  10303. 000000
  10304. ,0000
  10305. 000000
  10306. ,0000
  10307. 0000000
  10308. 00000
  10309. 00000
  10310. 00000
  10311. 0000000
  10312. ,000,
  10313. 00000
  10314. 00000
  10315. 00000
  10316. 00000
  10317. ,0000000
  10318. 0000000
  10319. 0,000000
  10320. 00000
  10321. 00000
  10322. 00000
  10323. 0,000
  10324. ,0000,
  10325. ,00,,
  10326. 0000000000
  10327. 00000
  10328. 000000
  10329. ?**4?
  10330. 000000000
  10331. 000,0
  10332. 000000
  10333. 00000
  10334. 00000
  10335. 00,000,0000
  10336. 0,000
  10337. 0000,0
  10338. 000,0
  10339. 000000
  10340. 00000
  10341. 00000
  10342. 000000
  10343. 000000,
  10344. 7*4*7
  10345. 4**4*
  10346. 4*44*
  10347. ?4!**?
  10348. 0GA0GG
  10349. 0v0G0
  10350. _6qqqa0q0
  10351. qrG60
  10352. ??;;4
  10353. 0  wr
  10354. rFr0G
  10355. 55GGr1rwrvBB5r0BwB
  10356. BAB05
  10357. rw55q6
  10358. arB0Q
  10359. B5rA55
  10360. q5Grq5
  10361. rqBab0 Q 
  10362. ??;;??;
  10363. ???????
  10364. 2INFO
  10365. No Quicktimecard
  10366. field id 1data
  10367. We're sorry, but
  10368. "Complete Guide to Dogs"
  10369. requires that QuickTime be installed
  10370. on your system.TAIL
  10371. OKSCRP
  10372. on mouseUp
  10373.   set cursor to watch
  10374.   send quit to stack
  10375. end mouseUp
  10376. 3INFO
  10377. No Colorcard
  10378. field id 1data
  10379. We're sorry, but
  10380. "Complete Guide to Dogs"
  10381. requires at least 256 colors.TAIL
  10382. OKSCRP
  10383. on mouseUp
  10384.   set cursor to watch
  10385.   send quit to stack
  10386. end mouseUp
  10387. 4INFO
  10388. Scrren too smallcard
  10389. field id 1data
  10390. We're sorry, but
  10391. "Complete Guide to Dogs"
  10392. requires a screen of at least
  10393. 640 x 480.TAIL
  10394. OKSCRP
  10395. on mouseUp
  10396.   set cursor to watch
  10397.   send quit to stack
  10398. end mouseUp
  10399. 5INFO
  10400. A dominant person is someone who is firm, commanding, in charge.
  10401. A less dominant person will be more easy going, gentle, mellow;
  10402. someone who "goes with the flow".
  10403. DominanceTAIL
  10404. 6INFO
  10405. KTAIL
  10406. 7INFO
  10407. OK Updata
  10408. bbbbbbb
  10409. [ZWWW
  10410. WO555
  10411. ZZZFW
  10412. WGGGXWP
  10413. HHKKT
  10414. H5555
  10415. HHH*54
  10416. OK +BiO
  10417. OK Downdata
  10418. """Mooo
  10419. [ZWWW
  10420. """Mooo
  10421. WO555
  10422. ZZZFW
  10423. """Mooo
  10424. WGGGXWP
  10425. HHKKT
  10426. H5555
  10427. HHH*54
  10428. NAME+TXT
  10429. field id 1data
  10430.                                                               Dog Talents
  10431. Agility Competition:     Dogs negotiate a series of obstacles and jumps (see the
  10432.                                         movie that accompanies the "Agility Competition" article
  10433.                                         for an example).
  10434. Companion Dog:         Good with people.
  10435. Compet. Obedience:  Programs with specific obedience skill requirements (see
  10436.                                         the series of articles on AKC Obedience).
  10437. Guarding:                     Protecting family and property.
  10438. Guide for the Blind:    Leading blind people safely in public places.
  10439. Handicapped Assist:  Helping hearing impaired, or physically or emotionally
  10440.                                         impaired people.
  10441. Herding:                        Moving livestock.
  10442. Hunting:                        General gun dog.
  10443. Jogging:                       Constant running for 20 or more minutes.
  10444. Lure Coursing:            Sighthounds chase plastic lures pulled through a field.
  10445. Performing Tricks:       "Shake hands", "speak", balancing a ball on the nose,
  10446.                                         playing basketball, etc.
  10447. Pointing:                       Indicating the location of game by freezing into a "pointing" 
  10448.                                        position.
  10449. Retrieving:                   Bringing sticks, balls, downed birds or other things back to
  10450.                                        the owner.
  10451. Schutzhund:                A dog sport that includes tracking, obedience and
  10452.                                        protection.
  10453. Search & Rescue:      Seeking survivors at disaster sites; finding lost people.
  10454. Sighting:                      Some breeds, like salukis and afghans, hunt by sight.
  10455. Snow Sled Pulling:    For racing or just for fun.
  10456. Tracking:                      Following a scent trail.
  10457. Watchdog:                   Barking to indicate the presence of an intruder.
  10458. Water Rescue:            Rescuing people from water.
  10459. Weight Pulling:           A competitive sport where the dog pulls increasing
  10460.                                        amounts of weight.
  10461.                                        Carting is also fun
  10462. this is where the dog pulls
  10463.                                        passengers riding in a cart.ADDD
  10464. OKSCRP
  10465. on mouseUp
  10466.   show card bitmap "OK Up"
  10467.   hide card bitmap "OK Down"
  10468.   set cursor to watch
  10469.   dismiss
  10470. end mouseUp
  10471. on mouseDown
  10472.   show card bitmap "OK Down"
  10473.   hide card bitmap "OK Up"
  10474.   repeat until the mouse is up
  10475.     if the mouseloc is within the rectangle of me then
  10476.       show card bitmap "OK Down"
  10477.       hide card bitmap "OK Up"
  10478.     else
  10479.       show card bitmap "OK Up"
  10480.       hide card bitmap "OK Down"
  10481.     end if
  10482.   end repeat
  10483. end mouseDown
  10484. *07**
  10485. 4*44*
  10486. The Main BackgroundSCRP
  10487. --------------------------------------
  10488. on openBackground
  10489.   global currentState
  10490.   if currentState is not empty then
  10491.     send maybeShowYourself to bg movie "Little Movie"
  10492.     send maybeShowYourself to bg movie "Slide Show"
  10493.   end if
  10494.   pass openBackground
  10495. end openBackground
  10496. --------------------------------------
  10497. on openCard
  10498.   global readOnly, currentMode
  10499.   -- If we're a read-only stack, check to make sure the current mode
  10500.   -- matches the setting of the mode buttons (by seeing if the "up" buttons
  10501.   -- are visible).  If not, fix it.
  10502.   if readOnly then
  10503.     if currentMode = 1 then
  10504.       if the visible of bg bitmap id 23 is true then  -- bitmap id 23 is "text up"
  10505.         send restoreMode to me
  10506.       end if
  10507.     else if currentMode = 2 then
  10508.       if the visible of bg bitmap id 24 is true then
  10509.         send restoreMode to me
  10510.       end if
  10511.     else if currentMode = 3 and the short name of this card is "Main Card-2" then
  10512.       if the visible of card bitmap id 7 is true then
  10513.         send restoreMode to me
  10514.       end if
  10515.     end if
  10516.     set cursor to Browse
  10517.   end if
  10518.   -- RMAK0597: Kludge for Windows OMO to restore
  10519.   -- RMAK0597: a movie's control bar.
  10520.   if the platform is "Windows" then
  10521.     send maybeShowYourself to bg movie "Little Movie"
  10522.     send maybeShowYourself to bg movie "Slide Show"
  10523.   end if
  10524.   pass openCard
  10525. end openCard
  10526. --------------------------------------
  10527. on closeCard
  10528.   send StopYourself to bg movie "Little Movie"
  10529.   send StopYourself to bg movie "Slide Show"
  10530.   pass closeCard
  10531. end closeCard
  10532. --------------------------------------
  10533. on stateChange newState
  10534.   -- Called when the user moves from one card to another within the main set.
  10535.   -- newState=1 for the Dog List
  10536.   -- newState=2 for the Ranking List
  10537.   -- newState=3 for the Article List
  10538.   -- newState=4 for the Index
  10539.   -- newState=5 for the Book List
  10540.   -- newState=6 for the Credits
  10541.   global currentState, currentMode, userBark
  10542.   -- RMAK0597: Kludge for Windows OMO to take down
  10543.   -- RMAK0597: a movie's control bar.
  10544.   if the platform is "Windows" then
  10545.     send kludgeHide to bg movie "Little Movie"
  10546.     send kludgeHIde to bg movie "Slide Show"
  10547.   end if
  10548.   lock screen
  10549.   -- These are now done from closeCard
  10550.   --send StopYourself to bg movie "Little Movie"
  10551.   --send StopYourself to bg movie "Slide Show"
  10552.   -- Mode 3 (the comparison table) is only valid on the one card, so if we're in that
  10553.   -- mode and we're leaving, we need to switch to text mode first.
  10554.   if currentMode=3 then
  10555.     send unhiliteYourself to card button id 2    -- "Comparisons"
  10556.     send hiliteYourself to bg button id 8           -- "Text"
  10557.     put 1 into currentMode    --Text mode
  10558.   end if
  10559.   if currentState=5 then
  10560.     -- We're coming out of state 5, so we need to reset the currentMode
  10561.     if the myhilite of bg button id 8 is true then    -- "Text"
  10562.       put 1 into currentMode
  10563.     else
  10564.       put 2 into currentMode
  10565.       hide bg field "Dog Info"    -- JSP0597: fix for Ron's bug
  10566.     end if
  10567.   end if
  10568.   go card "Main Card-" & newState
  10569.   put newState into currentState
  10570.   -- Some insurance that the datasheet isn't visible.
  10571.   if newState=2 then
  10572.     hide card datasheet "Comparison Table"
  10573.     hide card button id 15
  10574.     hide card field id 16
  10575.   end if
  10576.   put empty into bg field "Dog Caption"
  10577.   put empty into bg movie "Little Movie"
  10578.   put empty into bg bitmap "Little Picture"
  10579.   put empty into bg field "Dog Info"
  10580.   put empty into bg movie "Slide Show"
  10581.   put empty into bg bitmap "Big Picture"
  10582.   if newState=5 then
  10583.     send modeChange && 5 to me
  10584.     send showYourself to bg field "Dog Info"
  10585.   else
  10586.     send showStuff to me
  10587.   end if
  10588.   unlock screen with visual effect blinds up in 40 ticks
  10589.   -- RMAK0597: Kludge for Windows OMO to restore
  10590.   -- RMAK0597: a movie's control bar.
  10591.   if the platform is "Windows" then
  10592.     send maybeShowYourself to bg movie "Little Movie"
  10593.     send maybeShowYourself to bg movie "Slide Show"
  10594.   end if
  10595.   if newState=2 then
  10596.     if userBark is empty then    -- The user hasn't yet been to the questionnaire.
  10597.       popup card id 102 as dialog
  10598.       put "?" into userBark      -- So that we don't do this again.
  10599.     end if
  10600.   end if
  10601.   set cursor to Browse
  10602. end stateChange
  10603. --------------------------------------
  10604. on modeChange newMode
  10605.   -- Called when the user changes what's displayed on the current card.
  10606.   -- The book list is a special case since there's only one mode accessible
  10607.   -- on that card.
  10608.   -- newMode=1 for text mode
  10609.   -- newMode=2 for picture mode
  10610.   -- newMode=3 for comparison table mode
  10611.   -- newMode=5 for the Book List
  10612.   global currentMode
  10613.   -- RMAK0597: lock screen   -- moved to below for Windows kludge
  10614.   if currentMode=2 then      -- We're coming from picture mode.
  10615.     -- RMAK0597: Kludge for Windows OMO to take down
  10616.     -- RMAK0597: a movie's control bar.
  10617.     if the platform is "Windows" then
  10618.       send kludgeHIde to bg movie "Slide Show"
  10619.     end if
  10620.     lock screen  -- RMAK0597: moved from above for Windows kludge
  10621.     hide bg bitmap "Big Picture"
  10622.     send hideYourself to bg movie "Slide Show"
  10623.     hide bg field "Dog Caption"
  10624.   else
  10625.     -- RMAK0597: Kludge for Windows OMO to take down
  10626.     -- RMAK0597: a movie's control bar.
  10627.     if the platform is "Windows" then
  10628.       send kludgeHide to bg movie "Little Movie"
  10629.     end if
  10630.     lock screen  -- RMAK0597: moved from above for Windows kludge
  10631.     hide bg bitmap "Little Picture"
  10632.     send hideYourself to bg movie "Little Movie"
  10633.     hide bg field "Dog Info"
  10634.     if currentMode=3 then    -- We're coming from comparison mode.
  10635.       if the short name of this card is "Main Card-2" then    -- Paranoid check
  10636.         hide card datasheet "Comparison Table"
  10637.         hide card button id 15
  10638.         hide card field id 16
  10639.       end if
  10640.     end if
  10641.   end if
  10642.   put newMode into currentMode
  10643.   if newMode is not 5 then send showStuff to me
  10644.   if the platform is "Macintosh" then
  10645.     unlock screen with visual effect pixelDissolve in 60 ticks
  10646.   else
  10647.     unlock screen with visual effect blinds up in 40 ticks
  10648.     -- RMAK0597: Kludge for Windows OMO to restore
  10649.     -- RMAK0597: a movie's control bar.
  10650.     send maybeShowYourself to bg movie "Little Movie"
  10651.     send maybeShowYourself to bg movie "Slide Show"
  10652.   end if
  10653.   set cursor to Browse
  10654. end modeChange
  10655. --------------------------------------
  10656. on restoreMode
  10657.   -- Called by openCard only when we're a read-only stack.
  10658.   -- Makes sure that what's displayed matches the mode we're in.
  10659.   global currentMode
  10660.   put empty into bg bitmap "Little Picture"
  10661.   put empty into bg movie "Little Movie"
  10662.   put empty into bg field "Dog Caption"
  10663.   put empty into bg bitmap "Big Picture"
  10664.   put empty into bg movie "Slide Show"
  10665.   put empty into bg field "Dog Info"
  10666.   if currentMode = 1 then
  10667.     send hiliteYourself to bg button id 8
  10668.     send unHiliteYourself to bg button id 10
  10669.   end if
  10670.   if currentMode = 2 then
  10671.     send hiliteYourself to bg button id 10
  10672.     send unHiliteYourself to bg button id 8
  10673.     send hideYourself to bg movie "Little Movie"
  10674.     hide bg bitmap "Little Picture"
  10675.     hide bg field "Dog Info"
  10676.   else      -- Mode is 1 or 3
  10677.     hide bg field "Dog Caption"
  10678.     hide bg bitmap "Big Picture"
  10679.     send hideYourself to bg movie "Slide Show"
  10680.   end if
  10681.   if the short name of this card is "Main Card-2" then
  10682.     if currentMode = 3 then
  10683.       send hiliteYourself to card button id 2
  10684.       send unHiliteYourself to bg button id 8
  10685.       send unHiliteYourself to bg button id 10
  10686.       hide bg field "Dog Info"
  10687.     else
  10688.       send unHiliteYourself to card button id 2
  10689.       hide card datasheet "Comparison Table"
  10690.       hide card button id 15
  10691.       hide card field id 16
  10692.     end if
  10693.   end if
  10694.   send showStuff to me
  10695. end restoreMode
  10696. --------------------------------------
  10697. on showNewDog
  10698.   -- Called by the various picklists when the user selects a new item.
  10699.   global myBusy
  10700.   set cursor to myBusy
  10701.   -- RMAK0597: Kludge for Windows OMO to take down
  10702.   -- RMAK0597: a movie's control bar.
  10703.   if the platform is "Windows" then
  10704.     send kludgeHide to bg movie "Little Movie"
  10705.     send kludgeHIde to bg movie "Slide Show"
  10706.   end if
  10707.   lock screen
  10708.   put empty into bg bitmap "Little Picture"
  10709.   put empty into bg movie "Little Movie"
  10710.   put empty into bg field "Dog Caption"
  10711.   put empty into bg bitmap "Big Picture"
  10712.   put empty into bg movie "Slide Show"
  10713.   put empty into bg field "Dog Info"
  10714.   send showStuff to me
  10715.   if the platform is "Macintosh" then
  10716.     unlock screen with visual effect pixelDissolve in 40 ticks
  10717.   else
  10718.     unlock screen with visual effect blinds up in 40 ticks
  10719.     -- RMAK0597: Kludge for Windows OMO to restore
  10720.     -- RMAK0597: a movie's control bar.
  10721.     send maybeShowYourself to bg movie "Little Movie"
  10722.     send maybeShowYourself to bg movie "Slide Show"
  10723.   end if
  10724.   set cursor to Browse
  10725. end showNewDog
  10726. --------------------------------------
  10727. on showStuff
  10728.   -- Called by statechage, modeChange, restoreMode, showNewDog.
  10729.   -- Makes sure all the buttons are displayed correctly, and that
  10730.   -- the correct text fields, pictures, movies, etc. are showing.
  10731.   global currentMode, littleGraphic, bigGraphic, curDirPrefix, dogDirPrefix, curFileDog
  10732.   -- Label the text button appropriately.
  10733.   if curDirPrefix = dogDirPrefix then
  10734.     set name of bg button id 8 to "Description"  -- & Small Picture"
  10735.   else
  10736.     if littleGraphic = "V" then
  10737.       set name of bg button id 8 to "Text & Movie"
  10738.     else
  10739.       set name of bg button id 8 to "Text"  -- & Small Picture"
  10740.     end if
  10741.   end if
  10742.   -- Label the picture button appropriately.
  10743.   enable bg button id 10    -- Just in case it got itself disabled.
  10744.   if bigGraphic = "P" then
  10745.     set name of bg button id 10 to "Big Picture"
  10746.   else if bigGraphic = "S" then
  10747.     set name of bg button id 10 to "Slide Show"
  10748.   else
  10749.     -- There's no big picture or slide show, so let's make sure we're
  10750.     -- in text mode and then disable the Picture button.
  10751.     send mouseUp to bg button id 8    -- "Text"
  10752.     set name of bg button id 10 to "Big Picture"
  10753.     disable bg button id 10
  10754.   end if
  10755.   if currentMode = 2 then                     -- Picture mode
  10756.     disable bg button id 19    -- "Print"
  10757.     show bg bitmap "Print Greyed"
  10758.     hide bg bitmap "Print Up"
  10759.     send showYourself to bg field "Dog Caption"
  10760.     if bigGraphic = "P" then
  10761.       send hideYourself to bg movie "Slide Show"
  10762.       send showYourself to bg bitmap "Big Picture"
  10763.     else if bigGraphic = "S" then
  10764.       hide bg bitmap "Big Picture"
  10765.       send showYourself to bg movie "Slide Show"
  10766.     end if
  10767.   else                                      -- Text or Comparison mode
  10768.     enable bg  button id 19    -- "Print"
  10769.     hide bg bitmap "Print Greyed"
  10770.     show bg bitmap "Print Up"
  10771.     if currentMode=1 then                  -- Text Mode
  10772.       send showYourself to bg field "Dog Info"
  10773.     else                                   -- Comparison mode
  10774.       send showYourself to card datasheet "Comparison Table"
  10775.     end if
  10776.     if littleGraphic = "V" then
  10777.       hide bg bitmap "Little Picture"
  10778.       send showYourself to bg movie "Little Movie"
  10779.     else if littleGraphic = "L" then
  10780.       send hideYourself to bg movie "Little Movie"
  10781.       send showYourself to bg bitmap "Little Picture"
  10782.     end if
  10783.   end if
  10784.   set the visible of bg button "Puppy Test" to (curFileDog = "puptemte")
  10785.   set the visible of bg bitmap "puptest up" to (curFileDog = "puptemte")
  10786. end showStuff
  10787. --------------------------------------
  10788. on hypertext whatWord
  10789.   global myBusy, rowSavers
  10790.   if whatWord is not in card picklist "Index List" of card "Main Card-4" then
  10791.     beep
  10792.     exit hypertext
  10793.   end if
  10794.   set cursor to myBusy
  10795.   -- Find the line that contains the word.
  10796.   put col 1 of card picklist "Index List" of card "Main Card-4" into theList
  10797.   repeat with wRow=1 to the number of lines in theList
  10798.     if whatWord is in line wRow of theList then
  10799.       exit repeat
  10800.     end if
  10801.   end repeat
  10802.   -- RMAK0597: Kludge for Windows OMO to take down
  10803.   -- RMAK0597: a movie's control bar.
  10804.   if the platform is "Windows" then
  10805.     send kludgeHide to bg movie "Little Movie"
  10806.     send kludgeHIde to bg movie "Slide Show"
  10807.   end if
  10808.   lock screen
  10809.   if the short name of this card is "Main Card-4" then
  10810.     -- Special case when we're already on the index card.
  10811.     unhilite card picklist "Index List"
  10812.     hilite row wRow of card picklist "Index List"
  10813.     send getFileIndex to card picklist "Index List"
  10814.   else
  10815.     put wRow into item 4 of rowSavers
  10816.   end if
  10817.   send stateChange && 4 to this background
  10818.   if wRow > 12 then
  10819.     set the vertical scrollLine of card picklist "Index List" to wRow-2
  10820.   else
  10821.     set the vertical scrollLine of card picklist "Index List" to 1
  10822.   end if
  10823.   unlock screen with visual effect blinds up in 40 ticks
  10824.   -- RMAK0597: Kludge for Windows OMO to restore
  10825.   -- RMAK0597: a movie's control bar.
  10826.   if the platform is "Windows" then
  10827.     send maybeShowYourself to bg movie "Little Movie"
  10828.     send maybeShowYourself to bg movie "Slide Show"
  10829.   end if
  10830.   set cursor to Browse
  10831. end hypertext
  10832. $+BiO
  10833.     Text downEXTI
  10834. ""MMoo
  10835. Picture upEXTI
  10836. Sfff5
  10837. &INFO
  10838. Print UpEXTI
  10839. bbbbbb
  10840. bbbbb
  10841. bbbbb
  10842. bbbbbbbbbb
  10843. bbbbbb
  10844. bbbbbb
  10845. SSff55
  10846. 1TAIL
  10847. !INFO
  10848. Top Dogs UpEXTI
  10849. bbbbbb
  10850. bbbbbbb
  10851. bbbbbb
  10852. bbbbb
  10853. bbbbb
  10854. bbbbb
  10855. bbbbbb
  10856. bbbbbbb
  10857. bbbbbbbbbbbbbbbbb
  10858. bbbbbb
  10859. LL<<<<
  10860. <<<<<<<<
  10861. <<<<<<<<
  10862. <<<L<<<
  10863. bbbbbb
  10864. .a./.
  10865. bbbbbbb
  10866. bbbbbbbb
  10867. Picture downEXTI
  10868. ""MMoo
  10869. Text upEXTI
  10870. Sfff5
  10871. 2INFO
  10872. puptest upEXTI
  10873. bbbbbbb
  10874. bbbbbbb
  10875. bbbbbb
  10876. bbbbb
  10877. bbbbb
  10878. bbbbb
  10879. bbbbb
  10880. bbbb    
  10881. bbbbb
  10882. bbbbbbb
  10883. bbbbbb
  10884. bbbbbb
  10885. HOHaH
  10886. *z..f
  10887. H1**11
  10888. HOHa.
  10889. OL111
  10890. 1}OHOHOHz
  10891. MK5.I
  10892. HOHOHOHO
  10893. 11LKH1
  10894. 111LOHO
  10895. HOHOHO
  10896. }K110
  10897. 1}OHz11
  10898. 1}OHOHa
  10899. }K110
  10900. a.OHO}1
  10901. 11OHa..
  10902. a..HL
  10903. *11**
  10904. SSff55
  10905. 1INFO
  10906. Puppy TestSCRP
  10907. on mouseUp
  10908.   global myBusy
  10909.   show bg bitmap "puptest up"
  10910.   hide bg bitmap "puptest down"
  10911.   set cursor to myBusy
  10912.   if the platform is "Windows" then
  10913.     send kludgeHide to bg movie "Little Movie"
  10914.     send kludgeHIde to bg movie "Slide Show"
  10915.   end if
  10916.   lock screen
  10917.   go card id 45
  10918.   unlock screen with visual effect scroll down in 30 ticks
  10919.   set cursor to Browse
  10920. end mouseUp
  10921. on mouseDown
  10922.   show bg bitmap "puptest down"
  10923.   hide bg bitmap "puptest up"
  10924.   repeat until the mouse is up
  10925.     if the mouseloc is within the rectangle of me then
  10926.       show bg bitmap "puptest down"
  10927.       hide bg bitmap "puptest up"
  10928.     else
  10929.       show bg bitmap "puptest up"
  10930.       hide bg bitmap "puptest down"
  10931.     end if
  10932.   end repeat
  10933. end mouseDown
  10934. HTAIL
  10935. 3INFO
  10936. puptest downEXTI
  10937. """Mooo
  10938. """Mooo
  10939. HOHaH
  10940. *z..f
  10941. H1**11
  10942. HOHa.
  10943. OL111
  10944. 1}OHOHOHz
  10945. HOHOHOHO
  10946. 11LKH1
  10947. 111LOHO
  10948. HOHOHO
  10949. }K110
  10950. 1}OHz11
  10951. 1}OHOHa
  10952. }K110
  10953. a.OHO}1
  10954. 11OHa..
  10955. a..HL
  10956. *11**
  10957. +*'<<<
  10958. .INFO
  10959. Top Dogs DownEXTI
  10960. """Mooo
  10961. """Mooo
  10962. LL<<<<
  10963. <<<<<<<<
  10964. <<<<<<<<
  10965. <<<L<<<
  10966. """Mooo
  10967. .a./.
  10968. """Moo
  10969. ,INFO
  10970. Print DownEXTI
  10971. """Mooo
  10972. """Mooo
  10973. """Mooo
  10974. 1TAIL
  10975.  INFO
  10976. Help UpEXTI
  10977. bbbbb
  10978. bbbbb
  10979. bbbbbbbbb
  10980. xxxbb
  10981. *INFO
  10982.     Help DownEXTI
  10983. """Mooo
  10984. """Mooo
  10985. """Mooo
  10986. MMMMMMMMMMM
  10987. HelpSCRP
  10988. on mouseUp
  10989.   global myBusy, currentState
  10990.   set cursor to myBusy
  10991.   show bg bitmap "Help Up"
  10992.   hide bg bitmap "Help down"
  10993.   if the platform is "Windows" then
  10994.     send kludgeHide to bg movie "Little Movie"
  10995.     send kludgeHIde to bg movie "Slide Show"
  10996.   end if
  10997.   lock screen
  10998.   push this card
  10999.   if currentState is 2 then
  11000.     go card "Comparison Help"
  11001.   else 
  11002.     go card "Help Card"
  11003.   end if
  11004.   unlock screen with visual effect scroll down in 30 ticks
  11005.   set cursor to Browse
  11006. end mouseUp
  11007. on mouseDown
  11008.   show bg bitmap "Help down"
  11009.   hide bg bitmap "Help Up"
  11010.   repeat until the mouse is up
  11011.     if the mouseloc is within the rectangle of me then
  11012.       show bg bitmap "Help down"
  11013.       hide bg bitmap "Help Up"
  11014.     else
  11015.       show bg bitmap "Help Up"
  11016.       hide bg bitmap "Help down"
  11017.     end if
  11018.   end repeat
  11019. end mouseDown
  11020. +INFO
  11021.     Quit DownEXTI
  11022. """Mooo
  11023. """Mooo
  11024. """Mooo
  11025. DDWIWI
  11026. $INFO
  11027. Quit UpEXTI
  11028. bbbbb
  11029. DDWIWI
  11030. fffffV
  11031. QuitSCRP
  11032. on mouseUp
  11033.   set cursor to watch
  11034.   show bg bitmap "Quit Up"
  11035.   hide bg bitmap "Quit Down"
  11036.   lock screen
  11037.   send quit to stack
  11038. end mouseUp
  11039. on mouseDown
  11040.   show bg bitmap "Quit Down"
  11041.   hide bg bitmap "Quit Up"
  11042.   repeat until the mouse is up
  11043.     if the mouseloc is within the rectangle of me then
  11044.       show bg bitmap "Quit Down"
  11045.       hide bg bitmap "Quit Up"
  11046.     else
  11047.       show bg bitmap "Quit Up"
  11048.       hide bg bitmap "Quit Down"
  11049.     end if
  11050.   end repeat
  11051. end mouseDown
  11052. CreditsSCRP
  11053. on mouseUp
  11054.   global myBusy
  11055.   if the short name of this card is not "Main Card-6" then
  11056.     set cursor to myBusy
  11057.     send stateChange && 6 to this background
  11058.   end if
  11059. end mouseUp
  11060.     Book ListSCRP
  11061. on mouseUp
  11062.   global myBusy
  11063.   if the short name of this card is not "Main Card-5" then
  11064.     set cursor to myBusy
  11065.     send stateChange && 5 to this background
  11066.   end if
  11067. end mouseUp
  11068. IndexSCRP
  11069. on mouseUp
  11070.   global myBusy
  11071.   if the short name of this card is not "Main Card-4" then
  11072.     set cursor to myBusy
  11073.     send stateChange && 4 to this background
  11074.   end if
  11075. end mouseUp
  11076. tTAIL
  11077. ArticlesSCRP
  11078. on mouseUp
  11079.   global myBusy
  11080.   if the short name of this card is not "Main Card-3" then
  11081.     set cursor to myBusy
  11082.     send stateChange && 3 to this background
  11083.   end if
  11084. end mouseUp
  11085. Top DogsSCRP
  11086. on mouseUp
  11087.   global myBusy
  11088.   if the short name of this card is not "Main Card-2" then
  11089.     set cursor to myBusy
  11090.     send stateChange && 2 to this background
  11091.   end if
  11092. end mouseUp
  11093. BreedsSCRP
  11094. on mouseUp
  11095.   global myBusy
  11096.   if the short name of this card is not "Main Card-1" then
  11097.     set cursor to myBusy
  11098.     send stateChange && 1 to this background
  11099.   end if
  11100. end mouseUp
  11101. xTAIL
  11102. /INFO
  11103. Print GreyedEXTI
  11104. JJJJJJ
  11105. xxJJJxJ
  11106. 2JJJJ
  11107. JJJJJ
  11108. xxxJJ
  11109. xxxJx+
  11110. xx2JJ2
  11111. JJJf555
  11112. Jxxxx
  11113. xxxxx
  11114. 2xxxx
  11115. 2J2JJJJJ2J
  11116. JJ2xxxxxxxxJ
  11117. 5M5M5M555M5
  11118. xxxxJ2Jxx
  11119. Jxx2Jxxx
  11120. Jx2JJJJ2x2
  11121. JJxxxxxxJ
  11122. xxxxxxJ2xJ
  11123. xxxxxx
  11124. 22Jxxxx
  11125. SSff55
  11126. 1TAIL
  11127. Little Movie BottomEXTI
  11128. 1)^u]]
  11129. 1111111111111111
  11130. 11111
  11131. 1111111
  11132. 11111
  11133. f2JJDx
  11134. xSJJ2
  11135. Slide Show bottomEXTI
  11136. fM]]m^)1
  11137. fM]]u^11
  11138. >^ulJ2
  11139. f2JJSx
  11140. Dog CaptionSCRP
  11141. on showYourself
  11142.   global filePath, curFileDog, capDirSuffix, textExt, curDirPrefix, textFileType
  11143.   global myBusy, busyMax
  11144.   show me
  11145.   if me is empty then  
  11146.     put filePath & curDirPrefix & capDirSuffix into thePath
  11147.     put curFileDog & textExt into theFile
  11148.     if fileExists(thePath, theFile, textFileType) then
  11149.       put thePath & theFile into dogFile
  11150.     else
  11151.       put "I can't find the file" && thePath & theFile into me
  11152.       exit showYourself
  11153.     end if
  11154.     open file dogFile
  11155.     repeat with idx=1 to 500
  11156.       --put idx
  11157.       set cursor to (idx mod busyMax) + myBusy
  11158.       read from file dogFile until return
  11159.       if the result is not empty then exit repeat
  11160.       put it into line idx of me
  11161.     end repeat
  11162.     close file dogFile 
  11163.   end if
  11164. end showYourself
  11165. iTAIL
  11166. Dogs:TGD:ART_MOV:actiagil.mov.movgil.movl.mov
  11167. Little MovieSCRP
  11168. --------------------------------------
  11169. on mouseUp
  11170.   global myBusy
  11171.   set cursor to myBusy
  11172.   if the platform is "Windows" then
  11173.     send kludgeHide to me
  11174.   end if
  11175.   lock screen
  11176.   push this card
  11177.   go card "Movie Bar Help"
  11178.   unlock screen with visual effect scroll down fast
  11179.   set cursor to Browse
  11180. end mouseUp
  11181. --------------------------------------
  11182. on showYourself
  11183.   global filePath, curFileDog, curDirPrefix, movieExt, movieDirSuffix, movieFileType
  11184.   show me
  11185.   --set the myVisible of me to true
  11186.   show bg bitmap "Little Movie Bottom"
  11187.   put filePath & curDirPrefix & movieDirSuffix into thePath
  11188.   put curFileDog & movieExt into theFile
  11189.   if fileExists(thePath, theFile, movieFileType) then
  11190.     set the moviefile of me to thePath & theFile
  11191.     prepare me
  11192.     seek me to 0
  11193.   else
  11194.     set the moviefile of me to empty
  11195.   end if
  11196. end showYourself
  11197. --------------------------------------
  11198. on maybeShowYourself
  11199.   -- Called by openBackground.
  11200.   if the visible of me is true then 
  11201.     set the style of me to control
  11202.     if the moviefile of me is not empty then 
  11203.       prepare me
  11204.       seek me to 0
  11205.     end if
  11206.   end if
  11207. end maybeShowYourself
  11208. --------------------------------------
  11209. on hideYourself
  11210.   if the isPlaying of me is true then stop me
  11211.   hide me
  11212.   --set the myVisible of me to false
  11213.   hide bg bitmap "Little Movie Bottom"
  11214. end hideYourself
  11215. --------------------------------------
  11216. on stopYourself
  11217.   -- Called by stateChange and the picklists.
  11218.   pause me
  11219. end stopYourself
  11220. --------------------------------------
  11221. on kludgeHide
  11222.   -- Called by the "Help" and "Find Top Dogs" buttons.
  11223.   -- This is only needed to get around a Windows bug.
  11224.   if the visible of me is true then
  11225.     pause me
  11226.     set the style of me to transparent
  11227.   end if
  11228. end kludgeHide
  11229.     myvisible
  11230. falseEXTI
  11231. iTAIL
  11232. Dogs:TGD:CRED_SLD:producti.movmovvla.movv.mov
  11233. Slide ShowSCRP
  11234. --------------------------------------
  11235. on mouseUp
  11236.   global myBusy
  11237.   pause me
  11238.   set cursor to myBusy
  11239.   if the platform is "Windows" then
  11240.     send kludgeHide to me
  11241.   end if
  11242.   lock screen
  11243.   push this card
  11244.   go card "Movie Bar Help"
  11245.   unlock screen with visual effect scroll down fast
  11246.   set cursor to Browse
  11247. end mouseUp
  11248. --------------------------------------
  11249. on showYourself
  11250.   global filePath, curFileDog, slideDirSuffix, movieExt, curDirPrefix
  11251.   global movieFileType, desiredVolume
  11252.   show me
  11253.   --set the myVisible of me to true
  11254.   show bg bitmap "Slide Show bottom"
  11255.   put filePath & curDirPrefix & slideDirSuffix into thePath
  11256.   put curFileDog & movieExt into theFile
  11257.   if fileExists(thePath, theFile, movieFileType) then
  11258.     set the moviefile of me to thePath & theFile
  11259.     prepare me
  11260.     seek me to 0
  11261.     --set the playVolume of me to desiredVolume
  11262.   else
  11263.     set the moviefile of me to empty
  11264.   end if
  11265. end showYourself
  11266. --------------------------------------
  11267. on maybeShowYourself
  11268.   -- Called by openBackground.
  11269.   if the visible of me is true then 
  11270.     set the style of me to control
  11271.     if the moviefile of me is not empty then 
  11272.       prepare me
  11273.       seek me to 0
  11274.     end if
  11275.   end if
  11276. end maybeShowYourself
  11277. --------------------------------------
  11278. on hideYourself
  11279.   if the isPlaying of me is true then stop me
  11280.   hide me
  11281.   --set the myVisible of me to false
  11282.   hide bg bitmap "Slide Show bottom"
  11283. end hideYourself
  11284. --------------------------------------
  11285. on stopYourself
  11286.   -- Called by stateChange and the picklists.
  11287.   pause me
  11288. end stopYourself
  11289. --------------------------------------
  11290. on kludgeHide
  11291.   -- Called by the "Help" and "Find Top Dogs" buttons.
  11292.   -- This is only needed to get around a Windows bug.
  11293.   if the visible of me is true then
  11294.     pause me
  11295.     set the style of me to transparent
  11296.   end if
  11297. end kludgeHide
  11298. --on playStopped
  11299.   --global desiredVolume
  11300.   --put the playVolume of me into desiredVolume
  11301. --end playStopped
  11302.     myvisible
  11303. falseEXTI
  11304. hTAIL
  11305. er hNAME
  11306. Dog InfoSCRP
  11307. on showYourself
  11308.   global filePath, curFileDog, textDirSuffix, textExt, curDirPrefix, textFileType
  11309.   global myBusy, busyMax, currentState, idxSearchWord
  11310.   show me
  11311.   if me is empty then
  11312.     set cursor to myBusy
  11313.     put empty into holder    
  11314.     put filePath & curDirPrefix & textDirSuffix into thePath
  11315.     put curFileDog & textExt into theFile
  11316.     if fileExists(thePath, theFile, textFileType) then
  11317.       put thePath & theFile into dogFile
  11318.     else
  11319.       put "I can't find the file" && thePath & theFile into me
  11320.       exit showYourself
  11321.     end if
  11322.     if char 1 of dogFile = "." then
  11323.       put "wierdness:" && dogFile into me
  11324.       exit showYourself
  11325.     end if
  11326.     -- Read the file into a temporary buffer
  11327.     open file dogFile
  11328.     put 0 into idx
  11329.     repeat forever
  11330.       add 1 to idx
  11331.       set cursor to (idx mod busyMax) + myBusy
  11332.       read from file dogFile until return
  11333.       if the result is not empty then exit repeat
  11334.       put it into lyne
  11335.       
  11336.       put lyne after holder
  11337.     end repeat
  11338.     if holder is empty then
  11339.       put "holder is empty, dogFile is" && dogFile & return into me
  11340.     else
  11341.       put holder into me
  11342.     end if
  11343.     set the textFont of me to Helvetica
  11344.     set the textSize of me to 12
  11345.     close file dogFile
  11346.     -- Find any special formatting instructions
  11347.     add 1 to idx
  11348.     set cursor to (idx mod busyMax) + myBusy
  11349.     repeat forever        
  11350.       put offset("<b>", me) into boffset
  11351.       if boffset = 0 then
  11352.         exit repeat
  11353.       else
  11354.         delete char boffset to boffset+2 of me
  11355.         put offset("</>", me) into eoffset
  11356.         delete char eoffset to eoffset+2 of me
  11357.         set the textStyle of char boffset to eoffset-1 of me to bold
  11358.         set the textColor of char boffset to eoffset-1 of me to 6 --201      
  11359.       end if
  11360.     end repeat
  11361.     add 1 to idx
  11362.     set cursor to (idx mod busyMax) + myBusy
  11363.     repeat forever        
  11364.       put offset("<C>", me) into boffset
  11365.       if boffset = 0 then
  11366.         exit repeat
  11367.       else
  11368.         delete char boffset to boffset+2 of me
  11369.         put offset("</C>", me) into eoffset
  11370.         delete char eoffset to eoffset+3 of me
  11371.         set the textColor of char boffset to eoffset-1 of me to 1 --143      
  11372.       end if
  11373.     end repeat
  11374.     add 1 to idx
  11375.     set cursor to (idx mod busyMax) + myBusy
  11376.     repeat forever        
  11377.       put offset("<I>", me) into boffset
  11378.       if boffset = 0 then
  11379.         exit repeat
  11380.       else
  11381.         delete char boffset to boffset+2 of me
  11382.         put offset("</I>", me) into eoffset
  11383.         delete char eoffset to eoffset+3 of me
  11384.         set the textStyle of char boffset to eoffset-1 of me to underline      
  11385.       end if
  11386.     end repeat
  11387.     if currentState is 4 then
  11388.       put the number of chars in idxSearchWord into numchars
  11389.       put offset(idxSearchWord, me) into boffset
  11390.       if boffset > 0 then
  11391.         select char boffset to boffset+numchars-1 of me
  11392.       end if
  11393.     end if
  11394.   end if
  11395. end showYourself
  11396. ----------------------
  11397. -- The above method is simplier and, I think, not significantly slower.
  11398. -- It also has the advantage that multiple, different directives in one
  11399. -- line won't cause the offsets to be off.
  11400. -- But I'll leave this here for documentation purposes.
  11401. on oldshowYourself
  11402.   global filePath, curFileDog, textDirSuffix, textExt, curDirPrefix, textFileType
  11403.   global myBusy, busyMax
  11404.   show me
  11405.   if me is empty then
  11406.     set cursor to myBusy
  11407.     --set the multifont of me to false      -- Kludge to get around an OMO bug
  11408.     --set the multifont of me to true
  11409.     put empty into holder    
  11410.     put empty into bolders
  11411.     put empty into italicers
  11412.     put empty into headers
  11413.     put filePath & curDirPrefix & textDirSuffix into thePath
  11414.     put curFileDog & textExt into theFile
  11415.     if fileExists(thePath, theFile, textFileType) then
  11416.       put thePath & theFile into dogFile
  11417.     else
  11418.       put "I can't find the file" && thePath & theFile into me
  11419.       exit showYourself
  11420.     end if
  11421.     if char 1 of dogFile = "." then
  11422.       put "wierdness:" && dogFile into me
  11423.       exit showYourself
  11424.     end if
  11425.     open file dogFile
  11426.     put 0 into idx
  11427.     repeat forever
  11428.       add 1 to idx
  11429.       --put idx
  11430.       set cursor to (idx mod busyMax) + myBusy
  11431.       read from file dogFile until return
  11432.       if the result is not empty then exit repeat
  11433.       put it into lyne
  11434.       
  11435.       put 1 into boffset
  11436.       repeat while boffset is not 0        
  11437.         put offset("<b>", lyne) into boffset
  11438.         if boffset > 0 then
  11439.           delete char boffset to boffset+2 of lyne
  11440.           put offset("</>", lyne) into eoffset
  11441.           delete char eoffset to eoffset+2 of lyne
  11442.           put boffset & "," & eoffset-1 & "," & idx & return after bolders
  11443.         end if
  11444.       end repeat
  11445.       
  11446.       put 1 into boffset
  11447.       repeat while boffset is not 0        
  11448.         put offset("<I>", lyne) into boffset
  11449.         if boffset > 0 then
  11450.           delete char boffset to boffset+2 of lyne
  11451.           put offset("</I>", lyne) into eoffset
  11452.           delete char eoffset to eoffset+3 of lyne
  11453.           put boffset & "," & eoffset-1 & "," & idx & return after italicers
  11454.         end if
  11455.       end repeat
  11456.       
  11457.       put 1 into boffset
  11458.       repeat while boffset is not 0        
  11459.         put offset("<C>", lyne) into boffset
  11460.         if boffset > 0 then
  11461.           delete char boffset to boffset+2 of lyne
  11462.           put offset("</C>", lyne) into eoffset
  11463.           delete char eoffset to eoffset+3 of lyne
  11464.           put boffset & "," & eoffset-1 & "," & idx & return after headers
  11465.         end if
  11466.       end repeat
  11467.       
  11468.       put lyne after holder
  11469.     end repeat
  11470.     if holder is empty then
  11471.       put "holder is empty, dogFile is" && dogFile & return into me
  11472.     else
  11473.       put holder into me
  11474.     end if
  11475.     set the textFont of me to Helvetica
  11476.     set the textSize of me to 12
  11477.     close file dogFile
  11478.     repeat with idx=1 to the number of lines in bolders
  11479.       set cursor to (idx mod busyMax) + myBusy
  11480.       put line idx of bolders into tempLine
  11481.       set the textStyle of char (item 1 of tempLine) to 
  11482.       (item 2 of tempLine) of line (item 3 of tempLine) of me to bold
  11483.       set the textColor of char (item 1 of tempLine) to 
  11484.       (item 2 of tempLine) of line (item 3 of tempLine) of me to 201
  11485.     end repeat
  11486.     repeat with idx=1 to the number of lines in italicers
  11487.       set cursor to (idx mod busyMax) + myBusy
  11488.       put line idx of italicers into tempLine
  11489.       set the textStyle of char (item 1 of tempLine) to 
  11490.       (item 2 of tempLine) of line (item 3 of tempLine) of me to underline
  11491.     end repeat
  11492.     repeat with idx=1 to the number of lines in headers
  11493.       set cursor to (idx mod busyMax) + myBusy
  11494.       put line idx of headers into tempLine
  11495.       set the textColor of char (item 1 of tempLine) to 
  11496.       (item 2 of tempLine) of line (item 3 of tempLine) of me to 143
  11497.     end repeat
  11498.   end if
  11499. end oldshowYourself
  11500. ldata
  11501. AFFENPINSCHER  (AKC Toy Group)  
  11502. Height:  up to 11 1/2 inches.  
  11503. Weight:  3 to 8 pounds.
  11504. Size: Very Small.
  11505. Availability:  Very difficult to find.
  11506. History:  Named "Monkey dog", because of his monkey-like facial structure and expression, this feisty toy dog originated in Germany. At first a farm dog and ratter, probably larger in size, the Affenpinscher was miniaturized and became a house pet during the 18th and 19th centuries. Today the Affenpinscher is primarily a companion dog. 
  11507. Description:  A small dog with a harsh, shaggy coat, and longer hair all over the face. The Affenpinscher is square-bodied, with a deep chest and round head with a pronounced stop. The lower jaw is undershot, protruding below the dog's short nose. The black eyes are prominent and rounded. The hairy ears are pointed and erect. The coat is usually black or dark gray, but tan and red are also acceptable. The preferred height is around 10-1/4 inches. 
  11508. Notes:  Sensitive to temperature extremes. Overly warm living conditions are detrimental to the coat. Not recommended for younger children. Most are accepting of other pets in the family, especially when raised with them. Tends to guard food and toys. Some bloodlines are prone to fractures and slipped stifle. Like any short-nosed breed, the Affenpinscher may suffer from respiratory problems in hot weather. This breed likes to hike and go camping as long as the temperature stays above 20 degrees F. May challenge large dogs and other large animals unwisely. 
  11509. Personality:  Terrier-like personality. Fiery little dog, courageous and confident--a fearless defender. Very affectionate and amusing. Playful. Enjoys being with his family. Needs consistent, firm training. Some are difficult to housebreak. 
  11510. Behavior:
  11511. Children:  Not recommended for children.
  11512. Friendliness:  Loves everyone.
  11513. Trainability:  Slightly difficult to train.
  11514. Independence:  Moderately dependent on people.
  11515. Dominance:  Moderate.
  11516. Other Pets:  Generally good with other pets.
  11517. Combativeness:  Can be a bit dog-aggressive.
  11518. Noise:  Likes to bark.
  11519. Grooming and Physical Needs:
  11520. Grooming:  Regular grooming needed.
  11521. Trimming & Stripping:  No trimming or stripping needed.
  11522. Coat:  Medium coat.
  11523. Shedding:  Very light.
  11524. Docking:  Both ears and tail are customarily docked.
  11525. Exercise:  Very little exercise needed.
  11526. Jogging:  A fair jogging companion.
  11527. Indoors:  Very active indoors.
  11528. Apartments:  Good for apartment living.
  11529. Outdoor Space:  Does all right without a yard.
  11530. Climate:  Prefers cool climates.
  11531. Owner:  Good for novice owners.
  11532. Longevity:  Average (10 to 12 years).
  11533. Talents:  watchdog, agility, and performing tricks.
  11534. For More Information:
  11535. Call the AKC Breeder Referral Hotline: 1-900-407-PUPS for the name of a breeder referral representative in your area. Cost is 99 cents per minute. 
  11536. Photo Caption:  AFFENPINSCHER 
  11537. Photo copyright: Cook PhoDOGraphy 1995. All rights reserved. 
  11538. 0INFO
  11539. Big PictureSCRP
  11540. on showYourself
  11541.   global filePath, curFileDog, pictDirSuffix, pictExt, curDirPrefix
  11542.   global pictFileType, dataDir, myBusy
  11543.   show me
  11544.   if me is empty then
  11545.     set cursor to myBusy
  11546.     put filePath & curDirPrefix & pictDirSuffix into thePath
  11547.     put curFileDog & pictExt into theFile
  11548.     if fileExists(thePath, theFile, pictFileType) then
  11549.       import thePath & theFile into me
  11550.     else
  11551.       import filePath & dataDir & "nofile.pic" into me
  11552.     end if
  11553.   end if
  11554. end showYourself
  11555. adata
  11556. DescriptionSCRP
  11557. --------------------------------------
  11558. on hiliteYourself
  11559.   show bg bitmap id 22 -- "down"
  11560.   hide bg bitmap id 23 -- "up"
  11561.   set the myhilite of me to true
  11562. end hiliteYourself
  11563. --------------------------------------
  11564. on unhiliteYourself
  11565.   show bg bitmap id 23 -- "up"
  11566.   hide bg bitmap id 22 -- "down"
  11567.   set the myhilite of me to false
  11568. end unhiliteYourself
  11569. --------------------------------------
  11570. on showYourself
  11571.   show me 
  11572.   if the myhilite of me is true then
  11573.     show bg bitmap id 22 -- "down"
  11574.   else
  11575.     show bg bitmap id 23 -- "up"
  11576.   end if
  11577. end showYourself
  11578. --------------------------------------
  11579. on hideYourself
  11580.   hide me
  11581.   hide bg bitmap id 22 -- "down"
  11582.   hide bg bitmap id 23 -- "up"
  11583. end hideYourself
  11584. --------------------------------------
  11585. on mouseUp
  11586.   global currentMode, myBusy
  11587.   if the myhilite of me is false then
  11588.     -- mouseDown has down the hiliting
  11589.     set cursor to myBusy
  11590.     set the myhilite of me to true
  11591.     if currentMode=2 then
  11592.       send unhiliteYourself to bg button id 10    -- "Picture"
  11593.     else if currentMode=3 then
  11594.       send unhiliteYourself to card button id 2   -- "Comparisons"
  11595.     end if
  11596.     send modeChange && 1 to this background
  11597.   end if
  11598. end mouseUp
  11599. --------------------------------------
  11600. on mouseDown
  11601.   if the myhilite of me is false then
  11602.     show bg bitmap id 22 -- "Text down"
  11603.     hide bg bitmap id 23 -- "Text up"
  11604.     repeat until the mouse is up
  11605.       if the mouseloc is within the rectangle of me then
  11606.         show bg bitmap id 22 -- "Text down"
  11607.         hide bg bitmap id 23 -- "Text up"
  11608.       else
  11609.         show bg bitmap id 23 -- "Text up"
  11610.         hide bg bitmap id 22 -- "Text down"
  11611.       end if
  11612.     end repeat
  11613.   end if
  11614. end mouseDown
  11615. myhilite
  11616. trueEXTI
  11617. tTAIL
  11618. Find Top DogsSCRP
  11619. on mouseUp
  11620.   global myBusy
  11621.   set cursor to myBusy
  11622.   show bg bitmap "Top Dogs Up"
  11623.   hide bg bitmap "Top Dogs down"
  11624.   if the platform is "Windows" then
  11625.     send kludgeHide to bg movie "Little Movie"
  11626.     send kludgeHIde to bg movie "Slide Show"
  11627.   end if
  11628.   lock screen
  11629.   go card id 6
  11630.   unlock screen with visual effect scroll left in 30 ticks
  11631.   set cursor to Browse
  11632. end mouseUp
  11633. on mouseDown
  11634.   show bg bitmap "Top Dogs down"
  11635.   hide bg bitmap "Top Dogs Up"
  11636.   repeat until the mouse is up
  11637.     if the mouseloc is within the rectangle of me then
  11638.       show bg bitmap "Top Dogs down"
  11639.       hide bg bitmap "Top Dogs Up"
  11640.     else
  11641.       show bg bitmap "Top Dogs Up"
  11642.       hide bg bitmap "Top Dogs down"
  11643.     end if
  11644.   end repeat
  11645. end mouseDown
  11646.  TAIL
  11647. PrintSCRP
  11648. on mouseUp
  11649.   global currentState, currentMode, filePath, textDirSuffix, curFileDog
  11650.   global textExt, curDirPrefix, myBusy
  11651.   show bg bitmap "Print Up"
  11652.   hide bg bitmap "Print Down"
  11653.   -- Pathological insurance.
  11654.   send stopYourself to bg movie "Little Movie"
  11655.   send stopYourself to bg movie "Slide Show"
  11656.   put 0 into whatToPrint
  11657.   if currentState is 2 then
  11658.     if the optionKey is "down" then
  11659.       put 2 into whatToPrint
  11660.     else
  11661.       if the visible of card datasheet "Comparison Table" is true then
  11662.         put 1 into whatToPrint
  11663.       end if
  11664.     end if
  11665.   end if
  11666.   if whatToPrint = 1 then                  -- Print the Comparison Table.
  11667.     if the platform is "Macintosh" then
  11668.       set cursor to CommandDot1
  11669.     else
  11670.       set cursor to watch
  11671.     end if
  11672.     put card datasheet "Comparison Table" of this card into 
  11673.      card datasheet "Comparison Table" of card "Comp Table print"
  11674.     repeat with idx=3 to 6
  11675.       set name of column idx of 
  11676. card datasheet "Comparison Table" of card "Comp Table print" to 
  11677. name of column idx of card datasheet "Comparison Table" of this card
  11678.     end repeat
  11679.     put card picklist "Match List" of this card into 
  11680.      card picklist "Match List" of card "Match List Print"
  11681.     unhilite card picklist "Match List" of card "Match List Print"
  11682.     push this card
  11683.     lock screen
  11684.     if the platform is "Macintosh" then open printing
  11685.     print card "Comp Table print"
  11686.     print card "Match List Print"
  11687.     if the platform is "Macintosh" then close printing
  11688.     pop card
  11689.   else if whatToPrint = 2 then              -- Print the special selector check.
  11690.     set cursor to CommandDot1
  11691.     put card datasheet "Comparison Table" of this card into 
  11692.      card datasheet "Comparison Table" of card "Selector Check"
  11693.     put card picklist "Match List" of this card into 
  11694.      card picklist "Match List" of card "Selector Check"
  11695.     unhilite card picklist "Match List" of card "Selector Check"
  11696.     push this card
  11697.     lock screen
  11698.     print card "Selector Check"
  11699.     pop card
  11700.     -- Print the dog Info field.
  11701.   else                                     
  11702.     put filePath & curDirPrefix & textDirSuffix & curFileDog & textExt into dogFile
  11703.     PrintAFile dogFile
  11704.   end if
  11705.   set cursor to Browse
  11706. end mouseUp
  11707. on mouseDown
  11708.   show bg bitmap "Print Down"
  11709.   hide bg bitmap "Print Up"
  11710.   repeat until the mouse is up
  11711.     if the mouseloc is within the rectangle of me then
  11712.       show bg bitmap "Print Down"
  11713.       hide bg bitmap "Print Up"
  11714.     else
  11715.       show bg bitmap "Print Up"
  11716.       hide bg bitmap "Print Down"
  11717.     end if
  11718.   end repeat
  11719. end mouseDown
  11720. XTAIL
  11721. DINFO
  11722. Little PictureSCRP
  11723. on showYourself
  11724.   global filePath, curFileDog, pictExt, curDirPrefix, thumbDirSuffix
  11725.   global pictFileType, dataDir, myBusy
  11726.   show me
  11727.   if me is empty then
  11728.     set cursor to myBusy
  11729.     put filePath & curDirPrefix & thumbDirSuffix into thePath
  11730.     put curFileDog & pictExt into theFile
  11731.     if fileExists(thePath, theFile, pictFileType) then
  11732.       import thePath & theFile into me
  11733.     else
  11734.       import filePath & dataDir & "nofile.pic" into me
  11735.     end if
  11736.   end if
  11737. end showYourself
  11738. {data
  11739. 1b'hn
  11740. Al= yI
  11741. ^%z*(
  11742. #x8h+*;
  11743. |L/:U
  11744.  "8@9
  11745. F2_*q
  11746. `-fgqj+
  11747. glo|La
  11748. +`+`;
  11749. GVK .O
  11750. 8h+tj.3
  11751. -k+*NS
  11752. RF|Lm`
  11753. :V[w`
  11754. 'ByIfgA
  11755. `$m+/
  11756. S~:    m
  11757. yI .3
  11758. A)8h3
  11759. #x;`NS
  11760. #x;Fm+t
  11761. `d+*3
  11762. #D'h^
  11763. +*+*3
  11764. bEB'B
  11765. >/:#xu
  11766. GE &!"
  11767. j.>    ^
  11768. >Vm;Fy
  11769. |LV'3
  11770. =K^'h
  11771. 'h'h;J,l'h
  11772. ;F;FuC
  11773. ;F#2/:;
  11774. N'hm+Mi
  11775. m+8J3
  11776. +*+*'h
  11777. yIm+lEt
  11778. bXD#x
  11779. yIMMJ
  11780. Mg'h;F3
  11781. lE8`y
  11782. h8B;F
  11783. vO,GA)^
  11784. ;F+*3
  11785. qQ_4#x#
  11786. 2j!"Mg
  11787.  &A%B
  11788. m`,G8
  11789. ,EMgr`+*
  11790. Vm+*;
  11791. ;F#>G
  11792. m+fMY
  11793. xbxbxbxbp
  11794. m+Vmt
  11795. +*;F+*3
  11796. !bm`x
  11797. 'h'Bm+Y
  11798. ,fMMF
  11799. %8`8`4
  11800. 'G{jy
  11801. +*8%,
  11802. *?"yIu
  11803. A%MF,
  11804. g#x+*#
  11805. -NMg^
  11806. b "xb
  11807. buC;`3`^
  11808. +*m+,Gh
  11809. /:#x8}.
  11810. ;Jmd#.
  11811. 'h#"3
  11812. ffM &
  11813. {j{th
  11814. AlA%-k
  11815. 2A%yI
  11816. Al'h^
  11817. =z5u    y
  11818. ;F#xa
  11819. 'h+*'h
  11820. )JGWG
  11821. #x B6J
  11822.         E    E
  11823. /:#R8
  11824. R:'5e;F
  11825.  &1D0
  11826. ,    E    E
  11827. OtF1!"
  11828. Mi)J*
  11829. c`-h&s
  11830.     lF1kZR
  11831. *+*+*3
  11832. ,H#"3
  11833. :5#+*
  11834. 4M{C,!8
  11835. 8hXD{j &
  11836. XD8@%
  11837. sn'Bd
  11838. fg_6*7    O
  11839. :($;l/:
  11840. _ "9\8
  11841. !(`kZ
  11842. x( &1D
  11843. Mga&Y
  11844. )J/pZ
  11845. 1R    N ")
  11846. Vm &y
  11847. A%Mgm
  11848. VmA)m+
  11849. (($M'U
  11850. kZkZF
  11851. d "8@
  11852. 9\8@8@0
  11853. GEo{h@
  11854. F1kZkZ
  11855. kZg9)0
  11856. kZkZ-k
  11857.     E    E    E
  11858. MFA*Y
  11859. jUjoJRB*
  11860.     E    E    E
  11861. F1%){
  11862. !',E!"4
  11863.     E    E    E
  11864.     E    o    E
  11865. 8h$" 
  11866.     E    E    E
  11867. A%)JNS
  11868. buCj.z*3
  11869. hGE;F
  11870. #xO^NS
  11871. c)J-k
  11872. !    E-K
  11873. )Jg9S
  11874. F1g9R
  11875. uCm+t
  11876. %'B'h3
  11877. +*'hd
  11878. -k-k-k!
  11879. -k    E0
  11880. c    E    E
  11881. u'g6'"
  11882. =f5~    
  11883. ma;J0
  11884. 8hsn`-
  11885. 'JR`-m
  11886. g9wo%
  11887. ;F;F#
  11888. BJRMF
  11889. ,l4t1
  11890.  "F1r
  11891. ["2j[
  11892.     E)J-k
  11893. >    ,EV
  11894. MFXD3^
  11895. /:8};F8@;Fh
  11896.  &8`H
  11897. O]4t &
  11898. losn`
  11899. xblE!b9
  11900. (O],+
  11901. 8h &(
  11902. !    lkZnU
  11903. FkNs &
  11904. ;F "[H
  11905.  "XDzo>    
  11906. [Hsnp
  11907. )0 "p
  11908. _+*    o9Z
  11909. N &8@P
  11910. XD &O
  11911. c eo{JR
  11912. XDXD|L">
  11913. v8@ ";F
  11914. c-kJR
  11915. xb &0
  11916. c+*#x@
  11917.  & "S
  11918. XD &P
  11919.     E-JNs
  11920. B(`(`
  11921. d{j|L#
  11922. 8@xb | "0
  11923. g({jO
  11924. d    E    E=
  11925. d;F=e[
  11926. NvO9\
  11927. xb8}    
  11928. xbXDs
  11929. dO^8%Y
  11930. [H&vp
  11931. c-kxb
  11932. ABSvg
  11933. 8Flo)
  11934. !O^o{-k
  11935. CP!R!R<
  11936. &U)J>
  11937. )J%)A%
  11938. Goz*Go'h(
  11939. B"xCFp
  11940. f&iXL
  11941. l H .
  11942. c-kFk
  11943. >    >    5
  11944. \77m<
  11945. c)J)J
  11946. @= <`
  11947. E'l!'
  11948. xbx@p
  11949. XLxb .xb
  11950. gc2jXL
  11951. xb7Gxb
  11952. xbxbh
  11953. ?/ "-A
  11954. (O'lo!
  11955. xbxbh
  11956. Fxb`$xbs
  11957. &xb`$xb`$
  11958. Fx8`$h
  11959. xb8dxb+
  11960. xbdy{j
  11961. 8Nxb .`$
  11962. xb`$`$
  11963. xb`<h
  11964. FkFk&OFk>    N
  11965. FkF1Fk&iFk.
  11966. F1FkFkFk6
  11967. F1Fk>    FkFkN
  11968. F1FkFkFk&iFkB
  11969. Fk&O.
  11970. FkFk5
  11971. >    >    6
  11972. >    Fk.
  11973. Fk&i=
  11974. FkFk.
  11975. F1Fk&i>    >    .
  11976. F1Fk>    &i>    Fk&O&igSw
  11977. Fk&O5
  11978. Fk&i>    &OFkFk&ON
  11979. Fk>    N
  11980. FkFkB
  11981. F1Fk&OF1Fk6
  11982. FkFkF1>    .
  11983. FkF1FkF1V
  11984. Fk&OFkB
  11985. FkF1N
  11986. FkFkB
  11987. 1R1Rx~p
  11988. `$x@x8
  11989. Big PictureSCRP
  11990. on hiliteYourself
  11991.   show bg bitmap id 25 -- "down"
  11992.   hide bg bitmap id 24 -- "up"
  11993.   set the myhilite of me to true
  11994. end hiliteYourself
  11995. on unhiliteYourself
  11996.   show bg bitmap id 24 -- "up"
  11997.   hide bg bitmap id 25 -- "down"
  11998.   set the myhilite of me to false
  11999. end unhiliteYourself
  12000. on showYourself
  12001.   show me 
  12002.   if the myhilite of me is true then
  12003.     show bg bitmap id 25 -- "down"
  12004.   else
  12005.     show bg bitmap id 24 -- "up"
  12006.   end if
  12007. end showYourself
  12008. on hideYourself
  12009.   hide me 
  12010.   if the myhilite of me is true then
  12011.     hide bg bitmap id 25 -- "down"
  12012.   else
  12013.     hide bg bitmap id 24 -- "up"
  12014.   end if
  12015. end hideYourself
  12016. on mouseUp
  12017.   global currentMode, myBusy
  12018.   if the myhilite of me is false then
  12019.     -- mouseDown has done the hiliting
  12020.     set cursor to myBusy
  12021.     set the myhilite of me to true
  12022.     if currentMode=1 then
  12023.       send unhiliteYourself to bg button id 8       -- "Text"
  12024.     else if currentMode=3 then
  12025.       send unhiliteYourself to card button id 2    -- "Comparisons"
  12026.     end if
  12027.     send modeChange && 2 to this background
  12028.   end if
  12029. end mouseUp
  12030. on mouseDown
  12031.   if the myhilite of me is false then
  12032.     show bg bitmap id 25 -- "Picture down"
  12033.     hide bg bitmap id 24 -- "Picture up"
  12034.     repeat until the mouse is up
  12035.       if the mouseloc is within the rectangle of me then
  12036.         show bg bitmap id 25 -- "Picture down"
  12037.         hide bg bitmap id 24 -- "Picture up"
  12038.       else
  12039.         show bg bitmap id 24 -- "Picture up"
  12040.         hide bg bitmap id 25 -- "Picture down"
  12041.       end if
  12042.     end repeat
  12043.   end if
  12044. end mouseDown
  12045. myhilite
  12046. falseEXTI
  12047. ioowBw
  12048. j\ojj\\
  12049. =/9:>
  12050. 7n..j3
  12051. @n.n7X
  12052. 3s@s3o
  12053. o\\@@
  12054. :BB>5
  12055. -<8><
  12056. oj333jo@
  12057. >=+#&#ij
  12058. 3jsss
  12059. @....
  12060. .>>> 
  12061. ooooo
  12062. BtXXXXX
  12063. 2222.
  12064. Wxxt/
  12065. DCBE.lm
  12066. s\@@E
  12067. ososo
  12068. ojsi3jo
  12069. =>>>>
  12070. @oooso
  12071.  -Y-B-!
  12072. oojjlo
  12073. >=- >>2=
  12074. jsjopmjo
  12075. '?676
  12076. EE/ojjsj
  12077. FEsj@@
  12078. ojjoolqq
  12079. ljoso
  12080. \ojoj
  12081. olqmpj
  12082. @@lp@CBo
  12083. mlmps
  12084. ssoos
  12085. o/llC
  12086. ospso
  12087. 77676
  12088. ooooo
  12089. ooooo
  12090. lpooo
  12091. sojooj
  12092. ojpmm
  12093. oo3os
  12094. ojo\j
  12095. jojoj
  12096. oE@/@
  12097. j\@@@@
  12098. 477*4
  12099. 46677
  12100. \\@\\
  12101. FFF^^
  12102. BCB/j
  12103. oCC^^
  12104. jo/qE@^]^F
  12105. poooo
  12106. \ojjoj
  12107. \3ojoj
  12108. \o\j3
  12109. \\o\j
  12110. ojola
  12111. C@@C^@
  12112. @@C^^
  12113. ^]C^C
  12114. oo*    1
  12115. ooooj(
  12116. 2Jll^&
  12117. 1Ful]2
  12118. 1&^u]J2
  12119. 11111
  12120. 2JJSx
  12121. xVJJ2
  12122. +++7+++
  12123. +++++
  12124. oooooo
  12125. ooooojl
  12126. J2xxxxx
  12127. }xxxx
  12128. xxxxx
  12129. x4xxxL
  12130. xxxxx
  12131. Lx}x4x}xo
  12132. ooooox
  12133. noon@
  12134. jolpo
  12135. oooooo
  12136. jojC@CC
  12137. ooopoe
  12138. oojo@C+
  12139. <<7ppo
  12140. <6=======
  12141. 6<6==7
  12142. ]u^&1
  12143. 1&^l]J2
  12144. 2JJSo
  12145. ,+,+,+,+5
  12146. o@ooo
  12147. oo@oo
  12148. @^E^Co
  12149. jo@Fjj
  12150. ooooo
  12151. ^@C@/
  12152. ojooo
  12153. /@@@//
  12154. @E@@@
  12155. ooolo
  12156. jojoo
  12157. @@@oE]
  12158. @C_C@l//
  12159. ooooo
  12160. o/o@@
  12161. ,ojoj
  12162. oooo/
  12163. oojoo
  12164. oooooo
  12165. oooooo
  12166. ooojo
  12167. o@ooo
  12168. F.@o,/
  12169. jojo,oj
  12170. ooo/o
  12171. ,ojj//jF
  12172. FFE@C
  12173. o@@C/
  12174. ooooo
  12175. o@@C@
  12176. /o@E@
  12177. B@@C@@@
  12178. ooo@,o
  12179. ,oooF@C
  12180. joooo
  12181. @@@,@
  12182. EoC@/
  12183. oj,jo
  12184. ojjo@
  12185. @@@@C
  12186. /@/oj
  12187. @E@@o/
  12188. @CFCoo
  12189.     oooo
  12190. !o/oFEF
  12191. @F@@@]
  12192. oojoo
  12193. @jCoEjCoE
  12194. jojoj,/
  12195. //,C/ojF
  12196. ooooooooo
  12197. @/@@oC@n
  12198. F@q,/@E
  12199. C@@@E@C@.@,/oo
  12200. ooooo
  12201. Cj,@^F
  12202. oo@/Cio
  12203. @@EFE
  12204. jooooo/oo
  12205. oo///,E//C
  12206. @^@@@
  12207. /oEC@o
  12208. qC@@^C/
  12209. @@,EC@C/,
  12210. Cjooo
  12211. ^F/o@
  12212. ,j@/,j/ooo,oo
  12213. j/Fjj@CE,
  12214. @@CE@
  12215. oooo@@,@
  12216. oojooo
  12217. @,j/o
  12218. ojooooo
  12219. @@Co/
  12220. E//oj
  12221. xxxxxx
  12222. xxxxxx
  12223. xxxxxxxx
  12224. xxxxx
  12225. xxxxxx
  12226. +++*+
  12227. ++R+x
  12228. xxxxxx
  12229. RTAIL
  12230. 9INFO
  12231. Main Card-1SCRP
  12232. --------------------------------------
  12233. on openCard
  12234.   global currentState, currentMode, curDirPrefix, dogDirPrefix, rowSavers
  12235.   put dogDirPrefix into curDirPrefix
  12236.   if currentState is empty then
  12237.     send setInitialState to me
  12238.   else
  12239.     put item 1 of rowSavers into savedRow
  12240.     put first item of hilitedRows of card picklist "Dog List" into curRow
  12241.     if savedRow <> curRow then    -- Things are not as we left them.
  12242.       unhilite card picklist "Dog List"
  12243.       hilite row savedRow of card picklist "Dog List"
  12244.     end if
  12245.     send getFileDog to card picklist "Dog List"
  12246.   end if
  12247.   pass openCard
  12248. end openCard
  12249.       
  12250. --------------------------------------
  12251. on setInitialState
  12252.   global currentState, currentMode, curDirPrefix, dogDirPrefix, rowSavers
  12253.   put 1 into currentState
  12254.   put dogDirPrefix into curDirPrefix
  12255.   hide bg field "Dog Caption"
  12256.   send hideYourself to bg movie "Little Movie"
  12257.   hide bg bitmap "Big Picture"
  12258.   send hideYourself to bg movie "Slide Show"
  12259.   put 1 into currentMode
  12260.   send hiliteYourself to bg button id 8         -- "Text"
  12261.   send unhiliteYourself to bg button id 10    -- "Picture"
  12262.   put "1,1,1,1,1,1" into rowSavers
  12263.   unhilite card picklist "Dog List"
  12264.   hilite row 1 of card picklist "Dog List"
  12265.   send getFileDog to card picklist "Dog List"
  12266.   send showNewDog to this background
  12267. end setInitialState
  12268. Dog ListSCRP
  12269. on mouseUp theRow,theCol
  12270.   global myBusy, filePath, curFileDog, littleGraphic, bigGraphic, rowSavers
  12271.   -- If the user clicks where we already are, just exit.
  12272.   if theRow = (item 1 of rowSavers) then exit mouseUp
  12273.   set cursor to myBusy
  12274.   send stopYourself to bg movie "Little Movie"
  12275.   send stopYourself to bg movie "Slide Show"
  12276.   put cell theRow,2 of me into curFileDog
  12277.   put cell theRow,3 of me into littleGraphic
  12278.   put cell theRow,4 of me into bigGraphic
  12279.   put theRow into item 1 of rowSavers
  12280.   send showNewDog to this background
  12281. end mouseUp
  12282. --------------------------------------
  12283. on getFileDog
  12284.   -- Gets the info from the current hilighted row.
  12285.   global curFileDog, littleGraphic, bigGraphic
  12286.   put first item of hilitedRows of me into theRow
  12287.   if theRow is not empty then 
  12288.     if theRow > 12 then set the vertical scrollLine of me to theRow-2
  12289.     put cell theRow,2 of me into curFileDog
  12290.     put cell theRow,3 of me into littleGraphic
  12291.     put cell theRow,4 of me into bigGraphic
  12292.   end if
  12293. end getFileDog
  12294. --------------------------------------
  12295. on getDogTable
  12296.   -- Read the "dogtable" file (the list of breed names and normalized names)
  12297.   -- and put it into this picklist.
  12298.   -- This message is only used during development; it will never be
  12299.   -- called in the production version.
  12300.   global filePath
  12301.   set cursor to watch
  12302.   put filePath & "dogs.lst" into dogTable
  12303.   open file dogTable
  12304.   repeat with idx=1 to 500
  12305.     read from file dogTable until return
  12306.     if the result is not empty then exit repeat
  12307.     put it after tempHolder
  12308.     put "dog-" & idx
  12309.   end repeat
  12310.   delete the last character of tempHolder
  12311.   put tempHolder into me
  12312.   close file dogTable
  12313. end getDogTable
  12314. MOCELL10
  12315. American Pit Bull Terrier (S)
  12316. American Staffordshire Terrier 
  12317. Cavalier King Charles Spaniel
  12318. Collie (Rough and Smooth) (S)
  12319. Curly-Coated Retriever (S)
  12320. German Shorthaired Pointer
  12321. German Wirehaired Pointer
  12322. Glen of Imaal Terrier (S)
  12323. Greater Swiss Mountain Dog
  12324. Petit Basset Griffon Vendeen
  12325. Soft Coated Wheaten Terrier
  12326. Staffordshire Bull Terrier
  12327. West Highland White Terrier
  12328. Wirehaired Pointing Griffon
  12329. Affenpinscher
  12330. affenpin
  12331. Afghan Hound
  12332. afghhoun
  12333. Airedale Terrier
  12334. aireterr
  12335. Akita 
  12336. akita___
  12337. Alaskan Malamute (S)
  12338. alasmala
  12339. American Bulldog
  12340. amerbull
  12341. American Eskimo
  12342. amereski
  12343. American Foxhound
  12344. amerfoxh
  12345. ampibute
  12346. amestate
  12347. American Water Spaniel
  12348. amewatsp
  12349. Anatolian Shepherd (S)
  12350. anatshep
  12351. Argentine Dogo
  12352. argedogo
  12353. Australian Cattle Dog
  12354. auscatdo
  12355. Australian Shepherd (S)
  12356. austshep
  12357. Australian Terrier
  12358. austterr
  12359. Basenji
  12360. basenji_
  12361. Basset Hound
  12362. basshoun
  12363. Beagle
  12364. beagle__
  12365. Bearded Collie (S)
  12366. bearcoll
  12367. Beauceron
  12368. beaucero
  12369. Bedlington Terrier
  12370. bedlterr
  12371. Belgian Malinois (S)
  12372. belgmali
  12373. Belgian Sheepdog
  12374. belgshee
  12375. Belgian Tervuren
  12376. belgterv
  12377. Bernese Mountain Dog
  12378. bermoudo
  12379. Bichon Frise
  12380. bichfris
  12381. Black and Tan Coonhound
  12382. blantaco
  12383. Bloodhound
  12384. bloodhou
  12385. Border Collie (S)
  12386. bordcoll
  12387. Border Terrier
  12388. bordterr
  12389. Borzoi
  12390. borzoi__
  12391. Boston Terrier
  12392. bostterr
  12393. Bouvier des Flandres
  12394. boudesfl
  12395. Boxer
  12396. boxer___
  12397. Briard
  12398. briard__
  12399. Brittany 
  12400. brittany
  12401. Brussels Griffon
  12402. brusgrif
  12403. Bullmastiff
  12404. bullmast
  12405. Bull Terrier
  12406. bullterr
  12407. Cairn Terrier
  12408. cairterr
  12409. Canaan Dog (S)
  12410. canadog_
  12411. Cardigan Welsh Corgi
  12412. carwelco
  12413. cakichsp
  12414. Cesky Terrier
  12415. ceskterr
  12416. Chesapeake Bay Retriever
  12417. chebayre
  12418. Chihuahua (S)
  12419. chihuahu
  12420. Chinese Crested
  12421. chincres
  12422. Chinese Shar-Pei (S)
  12423. chishape
  12424. Chow Chow
  12425. chowchow
  12426. Clumber Spaniel
  12427. clumspan
  12428. Cocker Spaniel
  12429. cockspan
  12430. coroansm
  12431. curcoare
  12432. Dachshund (S)
  12433. dachshun
  12434. Dalmatian
  12435. dalmatia
  12436. Dandie Dinmont Terrier
  12437. dandinte
  12438. Doberman Pinscher (S)
  12439. dobepins
  12440. Dogue de Bordeaux
  12441. dogde_bo
  12442. English Bulldog
  12443. englbull
  12444. English Cocker Spaniel
  12445. engcocsp
  12446. English Foxhound
  12447. englfoxh
  12448. English Setter
  12449. englsett
  12450. English Springer Spaniel
  12451. engsprsp
  12452. English Toy Spaniel
  12453. engtoysp
  12454. Field Spaniel
  12455. fielspan
  12456. Finnish Spitz (S)
  12457. finnspit
  12458. Flat-Coated Retriever
  12459. flacoare
  12460. Fox Terrier (Smooth)
  12461. foxtersm
  12462. Fox Terrier (Wire)
  12463. foxterwi
  12464. French Bulldog
  12465. frenbull
  12466. German Shepherd Dog (S)
  12467. gershedo
  12468. gershopo
  12469. gerwirpo
  12470. Giant Schnauzer
  12471. gianschn
  12472. glofimte
  12473. Golden Retriever
  12474. goldretr
  12475. Gordon Setter
  12476. gordsett
  12477. Great Dane (S)
  12478. greadane
  12479. Great Pyrenees 
  12480. greapyre
  12481. grswmodo
  12482. Greyhound
  12483. greyhoun
  12484. Harrier
  12485. harrier_
  12486. Hovawart
  12487. hovawart
  12488. Ibizan Hound
  12489. ibizhoun
  12490. Irish Setter
  12491. irissett
  12492. Irish Terrier
  12493. iristerr
  12494. Irish Water Spaniel
  12495. iriwatsp
  12496. Irish Wolfhound
  12497. iriswolf
  12498. Italian Greyhound
  12499. italgrey
  12500. Jack Russell Terrier
  12501. jacruste
  12502. Japanese Chin
  12503. japachin
  12504. Keeshond
  12505. keeshond
  12506. Kerry Blue Terrier
  12507. kerblute
  12508. Komondor
  12509. komondor
  12510. Kuvasz
  12511. kuvasz__
  12512. Labrador Retriever
  12513. labrretr
  12514. Lakeland Terrier
  12515. laketerr
  12516. Leonberger
  12517. leonberg
  12518. Lhasa Apso
  12519. lhasapso
  12520. Maltese
  12521. maltese_
  12522. Manchester Terrier
  12523. mancterr
  12524. Manchester Terrier (Toy)
  12525. manterto
  12526. Mastiff (S)
  12527. mastiff_
  12528. Miniature Pinscher
  12529. minipins
  12530. Miniature Poodle
  12531. minipood
  12532. Miniature Schnauzer
  12533. minischn
  12534. Neapolitan Mastiff (S)
  12535. neapmast
  12536. Newfoundland
  12537. newfound
  12538. Norfolk Terrier
  12539. norfterr
  12540. Norwegian Elkhound
  12541. norwelkh
  12542. Norwich Terrier
  12543. norwterr
  12544. Old English Sheepdog
  12545. oldengsh
  12546. Otterhound
  12547. otterhou
  12548. Papillon
  12549. papillon
  12550. Pekingese
  12551. pekinges
  12552. Pembroke Welsh Corgi
  12553. pemwelco
  12554. pebagrve
  12555. Pharaoh Hound
  12556. pharhoun
  12557. Pointer
  12558. pointer_
  12559. Pomeranian
  12560. pomerani
  12561. Portuguese Water Dog
  12562. porwatdo
  12563. pug_____
  12564. puli____
  12565. Rhodesian Ridgeback
  12566. rhodridg
  12567. Rottweiler
  12568. rottweil
  12569. Saint Bernard
  12570. sainbern
  12571. Saluki
  12572. saluki__
  12573. Samoyed
  12574. samoyed_
  12575. Schipperke
  12576. schipper
  12577. Scottish Deerhound
  12578. scotdeer
  12579. Scottish Terrier
  12580. scotterr
  12581. Sealyham Terrier
  12582. sealterr
  12583. Shetland Sheepdog
  12584. shetshee
  12585. Shiba  (S)
  12586. shiba___
  12587. Shih Tzu
  12588. shihtzu_
  12589. Siberian Husky (S)
  12590. sibehusk
  12591. Silky Terrier
  12592. silkterr
  12593. Skye Terrier
  12594. skyeterr
  12595. socowhte
  12596. stabulte
  12597. Standard Poodle
  12598. stanpood
  12599. Standard Schnauzer
  12600. stanschn
  12601. Sussex Spaniel
  12602. sussspan
  12603. Tibetan Mastiff (S)
  12604. tibemast
  12605. Tibetan Spaniel
  12606. tibespan
  12607. Tibetan Terrier
  12608. tibeterr
  12609. tosa____
  12610. Toy Poodle
  12611. toy_pood
  12612. Vizsla
  12613. vizsla__
  12614. Weimaraner
  12615. weimaran
  12616. Welsh Springer Spaniel
  12617. welsprsp
  12618. Welsh Terrier
  12619. welsterr
  12620. wehiwhte
  12621. Whippet (S)
  12622. whippet_
  12623. wirpoigr
  12624. Yorkshire Terrier
  12625. yorkterr
  12626. BP$P$P$P$
  12627. P2P$P$P$1
  12628. +**e`
  12629. /[*harH
  12630. 3uaZ*r
  12631.      
  12632.     <<=<
  12633. +2oFo
  12634. ?==>>>
  12635. =5=<?
  12636. 22<61129
  12637. >>>>>
  12638. >'> I
  12639. 7;6=6;
  12640. ' '   
  12641. oojo3
  12642. mlmpo
  12643. o/llC
  12644. :INFO
  12645. Main Card-2SCRP
  12646. on closeCard
  12647.   global readOnly, topDogsListSaver
  12648.   if readOnly then
  12649.     put card picklist "Match List" into topDogsListSaver
  12650.   end if
  12651.   pass closeCard
  12652. end closeCard
  12653. --------------------------------------
  12654. on openCard
  12655.   global curCol, currentMode, dogDirPrefix, curDirPrefix, rowSavers
  12656.   global readOnly, topDogsListSaver, myBusy
  12657.   put dogDirPrefix into curDirPrefix
  12658.   if readOnly and (topDogsListSaver is not empty) then
  12659.     set cursor to myBusy
  12660.     unhilite card picklist "Match List"
  12661.     put empty into card picklist "Match List"
  12662.     put topDogsListSaver into card picklist "Match List"
  12663.     send newMatches to card datasheet "Comparison Table"
  12664.     if the myHilite of card button id 2 is true then
  12665.       send showDogRankNumbers to card datasheet "Comparison Table"
  12666.     end if
  12667.   end if
  12668.   put item 2 of rowSavers into savedRow
  12669.   put first item of hilitedRows of card picklist "Match List" into curRow
  12670.   if savedRow <> curRow then    -- Things are not as we left them.
  12671.     unhilite card picklist "Match List"
  12672.     hilite row savedRow of card picklist "Match List"
  12673.   end if  
  12674.   send getFileDog to card picklist "Match List"
  12675.   if curCol is empty then send getCurCol to card datasheet "Comparison Table"
  12676.   send anomolyInsurance to this card
  12677.   --set cursor to Browse
  12678.   pass openCard  
  12679. end openCard
  12680. --------------------------------------
  12681. on anomolyInsurance
  12682.   -- This is basically insurance in case of anomoly.  The only way we could be coming
  12683.   -- into this card with currentMode already set to three is if we left when it was 3
  12684.   -- via the "Find Top Dogs" button.  So in that case, when we come back, we want to
  12685.   -- still be in mode 3.  In any other case, we ensure that the "Comparisons" button and
  12686.   -- table are not errently up.
  12687.   global currentMode, dogDirPrefix, curDirPrefix
  12688.   put dogDirPrefix into curDirPrefix
  12689.   if currentMode is not 3 then
  12690.     send unhiliteYourself to card button id 2    -- Comparisons
  12691.     hide card datasheet "Comparison Table"
  12692.     hide card button id 15    -- The little '?' for dog types.
  12693.     hide card field id 16     -- The field with the type explanations.
  12694.   end if
  12695. end anomolyInsurance
  12696. Comparisons downdata
  12697. ""MMoo
  12698. Comparisons updata
  12699. Sfff5
  12700. ComparisonsSCRP
  12701. on hiliteYourself
  12702.   show card bitmap id 8 -- "Comparisons down"
  12703.   hide card bitmap id 7 -- "Comparisons up"
  12704.   set the myhilite of me to true
  12705. end hiliteYourself
  12706. on unhiliteYourself
  12707.   show card bitmap id 7 -- "Comparisons up"
  12708.   hide card bitmap id 8 --"Comparisons down"
  12709.   set the myhilite of me to false
  12710. end unhiliteYourself
  12711. ---------------------------------
  12712. on mouseUp
  12713.   global currentMode, currentBreedNum, myBusy
  12714.   if the myhilite of me is false then
  12715.     -- mouseDown has done the hiliting
  12716.     set cursor to myBusy
  12717.     set the myhilite of me to true
  12718.     if currentMode=1 then
  12719.       send unhiliteYourself to bg button id 8     -- "Text"
  12720.     else
  12721.       send unhiliteYourself to bg button id 10   -- "Picture"
  12722.     end if
  12723.     send modeChange && 3 to this background
  12724.   else
  12725.     -- An undocumented feature: option-clicking on the already down button will
  12726.     -- reset the comparison table.
  12727.     if the optionKey is "down" then
  12728.       set cursor to myBusy
  12729.       send resetYourself to card datasheet "Comparison Table" 
  12730.       unhilite card picklist "Match List"
  12731.       hilite row 1 of card picklist "Match List"
  12732.       send getFileDog to card picklist "Match List"    
  12733.       send showDogRankNumbers to card datasheet "Comparison Table"     
  12734.     end if
  12735.   end if
  12736.   set cursor to Browse
  12737. end mouseUp
  12738. ---------------------------------
  12739. on mouseDown
  12740.   if the myhilite of me is false then
  12741.     show card bitmap id 8 -- "Comparisons down"
  12742.     hide card bitmap id 7 -- "Comparisons up"
  12743.     repeat until the mouse is up
  12744.       if the mouseloc is within the rectangle of me then
  12745.         show card bitmap id 8 -- "Comparisons down"
  12746.         hide card bitmap id 7 -- "Comparisons up"
  12747.       else
  12748.         show card bitmap id 7 -- "Comparisons up"
  12749.         hide card bitmap id 8 -- "Comparisons down"
  12750.       end if
  12751.     end repeat
  12752.   end if
  12753. end mouseDown
  12754. myhilite
  12755. falseTAIL
  12756. Comparison TableSCRP
  12757. function isUpperType theLetter
  12758.   put charToNum(theLetter) into theNum
  12759.   if theNum = charToNum("Z") then return true
  12760.   repeat with idx=charToNum("A") to charToNum("K")
  12761.     if idx = theNum then return true
  12762.   end repeat
  12763.   return false
  12764. end isUpperType
  12765. ---------------------------------
  12766. on scroll
  12767.   if the vertical scrollPosition of me > 1 then
  12768.     hide card button id 15
  12769.     hide card field id 16
  12770.   else
  12771.     show card button id 15
  12772.   end if
  12773. end scroll
  12774. ---------------------------------
  12775. on showYourself
  12776.   show me
  12777.   if the vertical scrollPosition of me = 1 then show card button id 15
  12778.   send showDogRankNumbers to me
  12779. end showYourself
  12780. ---------------------------------
  12781. on getCurCol
  12782.   global curCol
  12783.   put 3 into curCol
  12784.   repeat with idx=3 to 6
  12785.     if col idx of row 1 of me is empty then
  12786.       put idx into curcol
  12787.       exit repeat
  12788.     end if
  12789.   end repeat
  12790. end getCurCol
  12791. ---------------------------------
  12792. on resetYourself
  12793.   global curCol, curColBreedNum
  12794.   put empty into curCol
  12795.   put empty into curColBreedNum
  12796.   set name of column 3 of me to " "
  12797.   put empty into col 3 of me
  12798.   set name of column 4 of me to " "
  12799.   put empty into col 4 of me
  12800.   set name of column 5 of me to " "
  12801.   put empty into col 5 of me
  12802.   set name of column 6 of me to " "
  12803.   put empty into col 6 of me
  12804. end resetYourself
  12805. ---------------------------------
  12806. on newMatches
  12807.   global userTypes, userSize, userCoat, userBark, userEnvirons, userCare
  12808.   global userDominance1, userDominance2, userFriendly, userActivities, userNovice
  12809.   global typeWords, sizeWords, coatWords, friendWords, indepWords
  12810.   global uTrainWords, exerWords, groomWords, profgWords, uClimateWords
  12811.   global childwords, petWords, spaceWords, climateWords, matchNumbers
  12812.   -- If newMatches is empty, it means that we haven't been thru the
  12813.   -- questionnaire, so we're safer just leaving this as is.
  12814.   if matchNumbers is empty then exit newMatches
  12815.   if the number of chars in userTypes = 1 then
  12816.     if userTypes is 0 then
  12817.       put "--" into col 2 of row 1 of me
  12818.     else
  12819.       put userTypes into col 2 of row 1 of me
  12820.     end if
  12821.     --put item (charToNum(userTypes) - charToNum("@"))+1 of typeWords into col 2 of row 1 of me
  12822.   else
  12823.     put empty into temp
  12824.     repeat with idx=1 to the number of chars in userTypes
  12825.       --put (charToNum(char idx of userTypes) - charToNum("@"))+1 into tnum
  12826.       --put char 1 of item tnum of typeWords after temp
  12827.       put char idx of userTypes after temp
  12828.       put "," after temp 
  12829.     end repeat
  12830.     delete the last char of temp
  12831.     put temp into col 2 of row 1 of me
  12832.   end if
  12833.   if the number of chars in userSize = 1 then
  12834.     put item (char 1 of userSize)+1 of sizeWords into col 2 of row 2 of me
  12835.   else
  12836.     put empty into temp
  12837.     repeat with idx=1 to the number of chars in userSize
  12838.       put char 1 of item (char idx of userSize)+1 of sizeWords after temp
  12839.       put "," after temp 
  12840.     end repeat
  12841.     delete the last char of temp
  12842.     put temp into col 2 of row 2 of me
  12843.   end if
  12844.   if the number of chars in userCoat = 1 then
  12845.     put item (char 1 of userCoat)+1 of coatWords into col 2 of row 3 of me
  12846.   else
  12847.     put empty into temp
  12848.     repeat with idx=1 to the number of chars in userCoat
  12849.       put char 1 of item (char idx of userCoat)+1 of coatWords after temp
  12850.       put "," after temp 
  12851.     end repeat
  12852.     delete the last char of temp
  12853.     put temp into col 2 of row 3 of me
  12854.   end if
  12855.   if userBark = "N" then
  12856.     put "ok" into col 2 of row 4 of me
  12857.   else
  12858.     put "not ok" into col 2 of row 4 of me
  12859.   end if
  12860.   put item (char 1 of userCare)+1 of uTrainWords into col 2 of row 5 of me
  12861.   put item (char 2 of userCare)+1 of exerWords into col 2 of row 6 of me
  12862.   if char 3 of userCare = 0 then
  12863.     put "whatever" into col 2 of row 7 of me
  12864.   else
  12865.     put item (char 3 of userCare)+1 of groomWords into col 2 of row 7 of me
  12866.   end if
  12867.   put item (char 4 of userCare)+1 of profgWords into col 2 of row 8 of me
  12868.   if char 5 of userCare = 0 then    -- Docking
  12869.     put "ok" into col 2 of row 9 of me
  12870.   else
  12871.     put "not ok" into col 2 of row 9 of me
  12872.   end if
  12873.   if userNovice is "Y" then
  12874.     put "yes" into col 2 of row 10 of me
  12875.   else
  12876.     put "no" into col 2 of row 10 of me
  12877.   end if
  12878.   put userDominance1 into col 2 of row 11 of me
  12879.   if userDominance2 = 0 then
  12880.     put "--" into col 2 of row 12 of me
  12881.   else
  12882.     put userDominance2 into col 2 of row 12 of me
  12883.   end if
  12884.   if the number of chars in userFriendly = 1 then
  12885.     put item (char 1 of userFriendly)+1 of friendWords into col 2 of row 13 of me
  12886.   else
  12887.     put empty into temp
  12888.     repeat with idx=1 to the number of chars in userFriendly
  12889.       put char 1 of item (char idx of userFriendly)+1 of friendWords after temp
  12890.       put "," after temp 
  12891.     end repeat
  12892.     delete the last char of temp
  12893.     put temp into col 2 of row 13 of me
  12894.   end if
  12895.   put item (char 6 of userCare)+1 of indepWords into col 2 of row 14 of me
  12896.   if char 1 of userEnvirons is 5 then
  12897.     put "small" into col 2 of row 15 of me
  12898.   else if char 1 of userEnvirons is 3 then
  12899.     put "older/eld." into col 2 of row 15 of me
  12900.   else
  12901.     put "none" into col 2 of row 15 of me
  12902.   end if
  12903.   put item (char 2 of userEnvirons)+1 of petWords into col 2 of row 16 of me
  12904.   put item (char 3 of userEnvirons)+1 of spaceWords into col 2 of row 17 of me
  12905.   put item (char 4 of userEnvirons)+1 of uClimateWords into col 2 of row 18 of me
  12906.   repeat with idx=1 to 22
  12907.     put char idx of userActivities into temp
  12908.     if temp is "I" then
  12909.       put "important" into col 2 of row 18+idx of me
  12910.     else if temp is "Y" then
  12911.       put "desired" into col 2 of row 18+idx of me
  12912.     else
  12913.       put "no" into col 2 of row 18+idx of me
  12914.     end if
  12915.   end repeat
  12916.   -- Now go back and fix up the line for Companion dog (which used to be
  12917.   -- police work).
  12918.   put char 23 of userActivities into temp
  12919.   if temp is "I" then
  12920.     put "important" into col 2 of row 29 of me
  12921.   else if temp is "Y" then
  12922.     put "desired" into col 2 of row 29 of me
  12923.   else
  12924.     put "no" into col 2 of row 29 of me
  12925.   end if
  12926.   send resetYourself to me
  12927. end newMatches
  12928. ---------------------------------
  12929. on showDogRankNumbers
  12930.   global dogAttrs, currentBreedNum, curCol, curColBreedNum, upperLetters
  12931.   global typeWords, sizeWords, coatWords, barkWords, friendWords, indepWords
  12932.   global trainWords, exerWords, groomWords, profgWords, dockWords
  12933.   global childwords, petWords, spaceWords, climateWords, serviceWords, jogWords
  12934.   if currentBreedNum is empty or currentBreedNum = curColBreedNum then
  12935.     exit showDogRankNumbers
  12936.   endif
  12937.   if dogAttrs is empty then
  12938.     send getDogAttrs to stack
  12939.   end if
  12940.   if curCol is empty or curCol is 7 then put 3 into curCol
  12941.   put currentBreedNum into curColBreedNum
  12942.   --put cell currentBreedNum,1 of card picklist "Dog List" of card "Main Card-1" into tempWord
  12943.   --set name of column curCol of me to char 1 to 6 of tempWord
  12944.   put cell currentBreedNum,2 of card picklist "Dog List" of card "Main Card-1" into tempWord
  12945.   repeat while the last char of tempWord is "_"
  12946.     delete the last char of tempWord
  12947.   end repeat
  12948.   set name of column curCol of me to tempWord
  12949.   put line currentBreedNum of dogAttrs into dogLine
  12950.   put char 4 of dogLine into tchar
  12951.   if isUpperType(tchar) then
  12952.     if tchar = "Z" then
  12953.       put "A,J" into col curCol of row 1 of me
  12954.     else
  12955.       put tchar into col curCol of row 1 of me
  12956.     end if
  12957.   else
  12958.     put numToChar(charToNum(tchar) + charToNum("A")-charToNum("a")) into temp
  12959.     put ",F" after temp
  12960.     put temp into col curCol of row 1 of me
  12961.   end if
  12962.   put item (char 1 of dogLine)+1 of sizeWords into col curCol of row 2 of me
  12963.   put item (char 2 of dogLine)+1 of coatWords into col curCol of row 3 of me
  12964.   put item (char 3 of dogLine)+1 of barkWords into col curCol of row 4 of me
  12965.   put item (char 8 of dogLine)+1 of trainWords into col curCol of row 5 of me
  12966.   put item (char 9 of dogLine)+1 of exerWords into col curCol of row 6 of me
  12967.   put item (char 10 of dogLine)+1 of groomWords into col curCol of row 7 of me
  12968.   put item (char 11 of dogLine)+1 of profgWords into col curCol of row 8 of me
  12969.   put item (char 12 of dogLine)+1 of dockWords into col curCol of row 9 of me
  12970.   if char 13 of dogLine is "Y" then              -- Novice
  12971.     put "ok" into col curCol of row 10 of me
  12972.   else
  12973.     put "no" into col curCol of row 10 of me
  12974.   end if
  12975.   put (char 7 of dogLine)*2 into col curCol of row 11 of me
  12976.   put (char 7 of dogLine)*2 into col curCol of row 12 of me
  12977.   put item (char 5 of dogLine)+1 of friendWords into col curCol of row 13 of me
  12978.   put item (char 6 of dogLine)+1 of indepWords into col curCol of row 14 of me
  12979.   put item (char 14 of dogLine)+1 of childWords into col curCol of row 15 of me
  12980.   put item (char 15 of dogLine)+1 of petWords into col curCol of row 16 of me
  12981.   put item (char 16 of dogLine)+1 of spaceWords into col curCol of row 17 of me
  12982.   put item (char 17 of dogLine)+1 of climateWords into col curCol of row 18 of me
  12983.   put item (char 18 of dogLine)+1 of serviceWords into col curCol of row 19 of me
  12984.   put item (char 19 of dogLine)+1 of jogWords into col curCol of row 20 of me
  12985.   repeat with idx=20 to 39
  12986.     if char idx of dogLine is "Y" then
  12987.       put "yes" into col curCol of row idx+1 of me
  12988.     else
  12989.       put "no" into col curCol of row idx+1 of me
  12990.     end if
  12991.   end repeat
  12992.   -- Now go back and fix up the line for Companion dog (which used to be
  12993.   -- police work).
  12994.   if char 14 of dogLine >= 3 then
  12995.     put "good" into col curCol of row 29 of me
  12996.   else
  12997.     put "fair" into col curCol of row 29 of me
  12998.   end if
  12999.   add 1 to curCol
  13000. end showDogRankNumbers
  13001. MOCELL10
  13002. Looks
  13003. Deservedy
  13004. mediumge
  13005. shorterde
  13006. --diumll
  13007. v. littlesy
  13008. fairly easy
  13009. Coating
  13010. --dium
  13011. lotsrousesy
  13012. regularee
  13013. Barkingg
  13014. not ok
  13015. noneledlesy
  13016. --ne&tail
  13017. Trainingness
  13018. nonenced
  13019. okt oktle
  13020. Exerciseence
  13021. --deratee
  13022. 4ery fr.t
  13023. very fr...
  13024. Groominglity
  13025. whatevere
  13026. v.depnd'tnt
  13027. excellentsy
  13028. Prof. Grooming
  13029. noneorate
  13030. goodardnt
  13031. no yardhd
  13032. Dockingg
  13033. okt oktle
  13034. warmlgele
  13035. --ordngle
  13036. Novice ownerng
  13037. poorood
  13038. yesdood
  13039. Dominance (primary c.g.)
  13040. Dominance (2ndary c.g.)g
  13041. Friendlinessrimary c.g.)
  13042. noservedy
  13043. Independencendary c.g.)
  13044. v.depnd't
  13045. noodgood
  13046. Children
  13047. noner/eld.rly
  13048. not good
  13049. not good
  13050. Other Pets
  13051. none dogs
  13052. nosr pets
  13053. nosr pets
  13054. Outdoor Space
  13055. no yard
  13056. nosyard
  13057. nosyard
  13058. Climate
  13059. moderate
  13060. Handicapped Assistance
  13061. yessmall
  13062. Jogging
  13063. nosirednt
  13064. smallerd
  13065. featherde
  13066. Hunting
  13067. nosirednt
  13068. v. littlesy
  13069. fairly easy
  13070. Sighting
  13071. nosirednt
  13072. moderateesy
  13073. regularsysy
  13074. Tracking
  13075. noportant
  13076. noneratee
  13077. tailletle
  13078. Retrieving
  13079. noportant
  13080. okneledeasy
  13081. 2-ilittle
  13082. Pointing
  13083. nosired
  13084. 2ery fr.e
  13085. reserved.
  13086. Herding
  13087. v.depnd't.
  13088. olderved.
  13089. Watchdog
  13090. noportant
  13091. goodardt.nt
  13092. smalllent
  13093. Guarding
  13094. noportant
  13095. cold dogs
  13096. --orlge
  13097. Companion Dogry Work
  13098. noportant
  13099. fairdng
  13100. noaring
  13101. Search & Rescue
  13102. noodood
  13103. Water Rescue
  13104. Guide for the Blind
  13105. Snow Sledding
  13106. Carting
  13107. Weight Pulling
  13108. Agility
  13109. Lure Coursing
  13110. Competitive Obedience
  13111. nosortant
  13112. Schutzhund
  13113. nossmall
  13114. Fmallerd
  13115. Tricks
  13116. nosortant
  13117. smallttle
  13118. v. littlesy
  13119. fairly easy
  13120. v. littlesy
  13121. v. littlesy
  13122. none easysy
  13123. --deratee
  13124. okttletle
  13125. 4oneledte
  13126. 4ery fr.e
  13127. very fr..
  13128. independ.
  13129. oldervedr.
  13130. goodardd.
  13131. no yardt.tt
  13132. warmllent
  13133. --orppyhd
  13134. poorlge
  13135. noyding
  13136. noaring
  13137. noodood
  13138. yesll
  13139. smallgtle
  13140. v. little
  13141. fairly easy
  13142. v. littlesy
  13143. v. little
  13144. nonefytle
  13145. --lotgelesy
  13146. okry easysy
  13147. 4oderatee
  13148. 4ittletle
  13149. very fr.
  13150. independ.
  13151. olderdogs
  13152. goodlrd
  13153. no yardfr.
  13154. warmnd'tt
  13155. --pend't.t
  13156. poorllent
  13157. noodppyhd
  13158. noallge
  13159. noaring
  13160. noodood
  13161. yesniel
  13162. yestle
  13163. noster
  13164. yesrier
  13165. nosrt
  13166. --H,H,m,p
  13167. yeserved
  13168. NADDD
  13169. Attribute
  13170. Ideal dog
  13171. basshoun
  13172. Match ListSCRP
  13173. on mouseUp theRow,theCol
  13174.   global myBusy, curFileDog, littleGraphic, bigGraphic, currentBreedNum, rowSavers
  13175.   if theRow = (item 2 of rowSavers) then exit mouseUp
  13176.   set cursor to myBusy
  13177.   put cell theRow,2 of me into curFileDog
  13178.   put cell theRow,3 of me into littleGraphic
  13179.   put cell theRow,4 of me into bigGraphic
  13180.   put cell theRow,5 of me into currentBreedNum
  13181.   put theRow into item 2 of rowSavers
  13182.   send showNewDog to this background
  13183. end mouseUp
  13184. ---------------------------------
  13185. on newMatches
  13186.   global currentState, matchNumbers, curFileDog, littleGraphic, bigGraphic
  13187.   global currentBreedNum, rowSavers
  13188.   put 2 into currentState
  13189.   unhilite me
  13190.   put empty into me
  13191.   repeat with idx=1 to 60
  13192.     put item (idx*2)-1 of matchNumbers into lidx
  13193.     put row lidx of card picklist "Dog List" of card "Main Card-1" into row idx of me
  13194.     put item idx*2 of matchNumbers into cell idx,6 of me
  13195.   end repeat
  13196.   hilite row 1 of me
  13197.   put 1 into item 2 of rowSavers
  13198.   put cell 1,2 of me into curFileDog
  13199.   put cell 1,3 of me into littleGraphic
  13200.   put cell 1,4 of me into bigGraphic
  13201.   put cell 1,5 of me into currentBreedNum
  13202.   send newMatches to card datasheet "Comparison Table"
  13203.   send showNewDog to this background
  13204. end newMatches
  13205. --------------------------------
  13206. on getFileDog
  13207.   global curFileDog, littleGraphic, bigGraphic, currentBreedNum
  13208.   put first item of hilitedRows of me into theRow
  13209.   if theRow is not empty then
  13210.     if theRow > 12 then set the vertical scrollLine of me to theRow-2
  13211.     put cell theRow,2 of me into curFileDog
  13212.     put cell theRow,3 of me into littleGraphic
  13213.     put cell theRow,4 of me into bigGraphic
  13214.     put cell theRow,5 of me into currentBreedNum
  13215.   end if
  13216. end getFileDog
  13217. MOCELL10
  13218. Cavalier King Charles Spaniel
  13219. Greater Swiss Mountain Dog
  13220. Collie (Rough and Smooth) (S)
  13221. Basset Hound
  13222. basshoun
  13223. Chinese Crested
  13224. chincres
  13225. Japanese Chin
  13226. japachin
  13227. pug_____
  13228. cakichsp
  13229. French Bulldog
  13230. frenbull
  13231. Cardigan Welsh Corgi
  13232. carwelco
  13233. Maltese
  13234. maltese_
  13235. Papillon
  13236. papillon
  13237. Pembroke Welsh Corgi
  13238. pemwelco
  13239. English Toy Spaniel
  13240. engtoysp
  13241. Whippet (S)
  13242. whippet_
  13243. Bernese Mountain Dog
  13244. bermoudo
  13245. Bichon Frise
  13246. bichfris
  13247. Chihuahua (S)
  13248. chihuahu
  13249. Australian Terrier
  13250. austterr
  13251. Greyhound
  13252. greyhoun
  13253. Italian Greyhound
  13254. italgrey
  13255. Bearded Collie (S)
  13256. bearcoll
  13257. English Bulldog
  13258. englbull
  13259. Mastiff (S)
  13260. mastiff_
  13261. Newfoundland
  13262. newfound
  13263. Cesky Terrier
  13264. ceskterr
  13265. Flat-Coated Retriever
  13266. flacoare
  13267. Beagle
  13268. beagle__
  13269. Scottish Deerhound
  13270. scotdeer
  13271. Shetland Sheepdog
  13272. shetshee
  13273. Silky Terrier
  13274. silkterr
  13275. Tibetan Terrier
  13276. tibeterr
  13277. Great Dane (S)
  13278. greadane
  13279. Boston Terrier
  13280. bostterr
  13281. American Water Spaniel
  13282. amewatsp
  13283. Bedlington Terrier
  13284. bedlterr
  13285. Harrier
  13286. harrier_
  13287. Miniature Poodle
  13288. minipood
  13289. Irish Setter
  13290. irissett
  13291. Norfolk Terrier
  13292. norfterr
  13293. Toy Poodle
  13294. toy_pood
  13295. Norwich Terrier
  13296. norwterr
  13297. grswmodo
  13298. Border Terrier
  13299. bordterr
  13300. Manchester Terrier
  13301. mancterr
  13302. Fox Terrier (Smooth)
  13303. foxtersm
  13304. Keeshond
  13305. keeshond
  13306. coroansm
  13307. Saluki
  13308. saluki__
  13309. Schipperke
  13310. schipper
  13311. Dachshund (S)
  13312. dachshun
  13313. Boxer
  13314. boxer___
  13315. English Cocker Spaniel
  13316. engcocsp
  13317. Affenpinscher
  13318. affenpin
  13319. Field Spaniel
  13320. fielspan
  13321. Vizsla
  13322. vizsla__
  13323. Welsh Springer Spaniel
  13324. welsprsp
  13325. Cocker Spaniel
  13326. cockspan
  13327. English Foxhound
  13328. englfoxh
  13329. English Setter
  13330. englsett
  13331. Otterhound
  13332. otterhou
  13333. Bloodhound
  13334. bloodhou
  13335. American Foxhound
  13336. amerfoxh
  13337. ?SCRP
  13338. on mouseUp
  13339.   set cursor to watch
  13340.   set the visible of card field id 16 to not (the visible of card field id 16)
  13341. end mouseUp
  13342. Look typesSCRP
  13343. on mouseUp
  13344.   hide me
  13345. end mouseUp
  13346. A - Mastiff, Bulldog
  13347. B - Spitz, Nordic
  13348. C - Terrier
  13349. D - Scent Hound
  13350. E - Setter, Retriever, Pointer
  13351. F - Toy, Miniature
  13352. G - Spaniel
  13353. H - Herding Dog
  13354.   I - Sighthound
  13355. J - Mtn. Dog, Stock Guard
  13356. K - Poodle, BichonTAIL
  13357. BP$P$P$P$
  13358. P2P$P$P$1
  13359. +**e`
  13360. /[*harH
  13361. 3uaZ*r
  13362. 666===
  13363. ==== 
  13364. sojoo
  13365. oojso
  13366.   +++++
  13367. ++++++++++
  13368. +++++
  13369. +++ ++
  13370. +++++ 
  13371.  +++++++
  13372.  +++++
  13373.  ++++
  13374.  ++++++++
  13375. +++++
  13376. +++++
  13377. +++++++
  13378. 77=><017
  13379. C@C_C_//
  13380. mlmpo
  13381. o/qlC
  13382. ;INFO
  13383. Main Card-3SCRP
  13384. on openCard
  13385.   global artDirPrefix, curDirPrefix, rowSavers
  13386.   put artDirPrefix into curDirPrefix
  13387.   put item 3 of rowSavers into savedRow
  13388.   put first item of hilitedRows of card picklist "Article List" into curRow
  13389.   if savedRow <> curRow then    -- Things are not as we left them.
  13390.     unhilite card picklist "Article List"
  13391.     hilite row savedRow of card picklist "Article List"
  13392.   end if
  13393.   send getFileArt to card picklist "Article List"  
  13394.   pass openCard
  13395. end openCard
  13396. Article ListSCRP
  13397. ------------------------------------
  13398. on mouseUp theRow,theCol
  13399.   global filePath, myBusy, curFileDog, littleGraphic, bigGraphic, rowSavers
  13400.   if theRow = (item 3 of rowSavers) then exit mouseUp
  13401.   set cursor to myBusy
  13402.   send stopYourself to bg movie "Little Movie"
  13403.   send stopYourself to bg movie "Slide Show"
  13404.   put cell theRow,2 of me into curFileDog
  13405.   put cell theRow,3 of me into littleGraphic
  13406.   put cell theRow,4 of me into bigGraphic
  13407.   put theRow into item 3 of rowSavers
  13408.   send showNewDog to this background
  13409. end mouseUp
  13410. ------------------------------------
  13411. on getFileArt
  13412.   global curFileDog, littleGraphic, bigGraphic
  13413.   put first item of hilitedRows of me into theRow
  13414.   if theRow is not empty then
  13415.     if theRow > 12 then set the vertical scrollLine of me to theRow-2
  13416.     put cell theRow,2 of me into curFileDog
  13417.     put cell theRow,3 of me into littleGraphic
  13418.     put cell theRow,4 of me into bigGraphic
  13419.     set the visible of bg button "Puppy Test" to (curFileDog = "puptemte")
  13420.     set the visible of bg bitmap "puptest up" to (curFileDog = "puptemte")
  13421.   end if
  13422. end getFileArt
  13423. ------------------------------------
  13424. on getArtTable
  13425.   -- Read the articles file and put it into this picklist.
  13426.   -- This message is only used during development; it will never be
  13427.   -- called in the production version.
  13428.   global filePath
  13429.   set cursor to watch
  13430.   put filePath & "articles.lst" into artTable
  13431.   open file artTable
  13432.   repeat with idx=1 to 500
  13433.     read from file artTable until return
  13434.     if the result is not empty then exit repeat
  13435.     put it after tempHolder
  13436.     put "art-" & idx
  13437.   end repeat
  13438.   delete the last character of tempHolder
  13439.   put tempHolder into me
  13440.   close file artTable
  13441. end getArtTable
  13442. MOCELL10
  13443. Welcome to Complete Guide to Dogs
  13444. Activity: Lure Coursing (M)
  13445. Activity: Other Dog Sports
  13446. Activity: Pulling Sports (M)
  13447. AKC Canine Good Citizen Test (M)
  13448. AKC Obedience: General Info
  13449. AKC Obedience: Novice (M)
  13450. AKC Obedience: Utility (M)
  13451. Anatomy: Parts of the Body
  13452. Behavior: Common Problems
  13453. Behavior: Dogs and Babies
  13454. Behavior: Psychology Principles
  13455. Behavior: Training Children 
  13456. Dogs: Basic Equipment (S)
  13457. Grooming: Ears, Teeth, Nails (M)
  13458. Health: Diseases / Conditions
  13459. Health: Responsible Breeding
  13460. Health: Spaying / Neutering
  13461. Puppies: Basic Obedience (M)
  13462. Puppies: Evaluating Structure
  13463. Puppies: Good Manners (M)
  13464. Puppies: Socialization (M)  
  13465. Puppies: Temperament Testing (M)
  13466. Selection: Considerations
  13467. Selection: Find the Right Breed (S)  
  13468. Selection: Find the Right Litter
  13469. Service: Assistance Dogs (M)
  13470. Service: Guide Dogs for the Blind (M)
  13471. Service: Therapy Dogs (S)
  13472. Story: Raising a Guide Dog Puppy
  13473. welcome_
  13474. Abbreviations
  13475. abbrevia
  13476. Activity: Agility (M,S)
  13477. actiagil
  13478. Activity: Herding (M)
  13479. actiherd
  13480. actilure
  13481. acotdosp
  13482. actpulsp
  13483. Activity: Tricks! (M)
  13484. actitric
  13485. Activity: Tracking (M)
  13486. actitrac
  13487. AKC Breed Classification
  13488. akcbrecl
  13489. akcagoct
  13490. AKC Dog Showing (M)
  13491. akcdogsh
  13492. akobgein
  13493. akcobeno
  13494. AKC Obedience: Open (M)
  13495. akcobeop
  13496. akcobeut
  13497. Anatomy: Coat Colors
  13498. doancoco
  13499. Anatomy: Ears
  13500. doganaea
  13501. Anatomy: Movement (M)
  13502. dog_move
  13503. doanpotb
  13504. Anatomy: The Head 
  13505. doanthhe
  13506. behaprob
  13507. Behavior: Discipline
  13508. behadisc
  13509. dogandba
  13510. Behavior: Leadership
  13511. behalead
  13512. Behavior: Postures (S)
  13513. behapost
  13514. behapsyc
  13515. behtrach
  13516. pupbaseq
  13517. Dogs: Magazines
  13518. dog_maga
  13519. Dogs: Organizations
  13520. dogsorga
  13521. Dogs: Ownership (M)
  13522. doreanre
  13523. Dogs: Tidbits
  13524. dog_tidb
  13525. Dogs: Travel Tips
  13526. dogtrati
  13527. greatean
  13528. Grooming: The Coat (M)
  13529. grotheco
  13530. Grooming: The Bath (M)
  13531. grotheba
  13532. Health: Danger Signs
  13533. healdang
  13534. healdise
  13535. Health: Flea Control
  13536. healflea
  13537. Health: Parasites
  13538. healpara
  13539. hearesbr
  13540. hespanne
  13541. Health: Vaccinations
  13542. healvacc
  13543. pupbasob
  13544. pupevast
  13545. putegoma
  13546. Puppies: Housebreaking
  13547. pupphous
  13548. pusoanad
  13549. puptemte
  13550. selecons
  13551. pufithrb
  13552. pufithrl
  13553. Selection: Wolf Hybrids
  13554. wolfhybr
  13555. serassdo
  13556. segudftb
  13557. Service: Police Dogs (S)
  13558. serpoldo
  13559. serthedo
  13560. Story: A Plea For Crates
  13561. sta_plfc
  13562. Story: Dog Heroes
  13563. stodoghe
  13564. straagdp
  13565. BP$P$P$P$
  13566. P2P$P$P$1
  13567. +**e`
  13568. /[*harH
  13569. 3uaZ*r
  13570. <1    :6=
  13571. ?==>>>
  13572. 22<61129
  13573. >>>>>
  13574. C@C_C_//
  13575. mlmpo
  13576. o/qlC
  13577. <INFO
  13578. Main Card-4SCRP
  13579. on openCard
  13580.   global rowSavers
  13581.   -- getFileIndex sets curDirPrefix
  13582.   put item 4 of rowSavers into savedRow
  13583.   put first item of hilitedRows of card picklist "Index List" into curRow
  13584.   if savedRow <> curRow then    -- Things are not as we left them.
  13585.     unhilite card picklist "Index List"
  13586.     hilite row savedRow of card picklist "Index List"
  13587.   end if  
  13588.   send getFileIndex to card picklist "Index List"
  13589.   pass openCard
  13590. end openCard
  13591. Index ListSCRP
  13592. on mouseUp theRow,theCol
  13593.   global myBusy, filePath, curFileDog, littleGraphic, bigGraphic, rowSavers
  13594.   global curDirPrefix, dogDirPrefix, artDirPrefix, idxSearchWord
  13595.   if theRow = (item 4 of rowSavers) then exit mouseUp
  13596.   set cursor to myBusy
  13597.   send stopYourself to bg movie "Little Movie"
  13598.   send stopYourself to bg movie "Slide Show"
  13599.   put cell theRow,2 of me into curFileDog
  13600.   put cell theRow,3 of me into littleGraphic
  13601.   put cell theRow,4 of me into bigGraphic
  13602.   put cell theRow,6 of me into idxSearchWord
  13603.   put theRow into item 4 of rowSavers
  13604.   if cell theRow,5 of me = "D" then
  13605.     put dogDirPrefix into curDirPrefix
  13606.   else
  13607.     put artDirPrefix into curDirPrefix
  13608.   end if
  13609.   send showNewDog to this background
  13610. end mouseUp
  13611. ------------------------------------
  13612. on getFileIndex
  13613.   -- Gets the normalized dog name from the current hilighted row and puts it
  13614.   -- into the global "curFileDog".
  13615.   global curDirPrefix, curFileDog, littleGraphic, bigGraphic
  13616.   global dogDirPrefix, artDirPrefix, idxSearchWord
  13617.   put first item of hilitedRows of me into theRow
  13618.   if theRow is not empty then
  13619.     if theRow > 12 then set the vertical scrollLine of me to theRow-2
  13620.     put cell theRow,2 of me into curFileDog
  13621.     put cell theRow,3 of me into littleGraphic
  13622.     put cell theRow,4 of me into bigGraphic
  13623.     put cell theRow,6 of me into idxSearchWord
  13624.     if cell theRow,5 of me = "D" then
  13625.       put dogDirPrefix into curDirPrefix
  13626.     else
  13627.       put artDirPrefix into curDirPrefix
  13628.     end if
  13629.   end if
  13630.   set the visible of bg button "Puppy Test" to (curFileDog = "puptemte")
  13631.   set the visible of bg bitmap "puptest up" to (curFileDog = "puptemte")
  13632. end getFileIndex
  13633. ------------------------------------
  13634. on getIndexTable
  13635.   -- Read the "index.lst" file and put it into this picklist.
  13636.   -- This message is only used during development; it will never be
  13637.   -- called in the production version.
  13638.   global filePath, myBusy
  13639.   set cursor to myBusy
  13640.   put filePath & "index.lst" into idxTable
  13641.   open file idxTable
  13642.   repeat with idx=1 to 500
  13643.     read from file idxTable until return
  13644.     if the result is not empty then exit repeat
  13645.     put it after tempHolder
  13646.     put "idx-" & idx
  13647.   end repeat
  13648.   delete the last character of tempHolder
  13649.   put tempHolder into me
  13650.   close file idxTable
  13651.   set cursor to Browse
  13652. end getIndexTable
  13653. MOCELL10
  13654. Accident protection in car
  13655. Accomodations, taking pets
  13656. AKC registration, meaning of
  13657. Coat, remove foreign matter
  13658. Grooming, ears, teeth, nails
  13659. Guide Dogs, puppy raising
  13660. Heel off leash, AKC Novice 
  13661. Insect Growth Regulators:
  13662. Mixed breed vs. Pure-Bred
  13663. Mixed breed vs. Pure-Bred
  13664. Narcotics detection, training
  13665. Osteochondritis dessicans
  13666. Osteochondritis dessicans
  13667. Patellar luxation (slipped stifle)
  13668. Progressive retinal atrophy (PRA)
  13669. Questions to ask breeders
  13670. Rewards, teaching manners
  13671. Rewards, in socialization
  13672. Schutzhund Tracking Tests:
  13673. Search & Rescue, tracking
  13674. Search and Rescue Tracking
  13675. Puppy temperament testing
  13676. Toxicity of flea chemicals
  13677. Training, basic obedience
  13678. Vacuuming, for flea control
  13679. Abbreviations
  13680. abbrevia
  13681. Abbreviations
  13682. Abundiz, Lorenzo
  13683. stodoghe
  13684. Abundiz
  13685. sta_plfc
  13686. Plea for Crates
  13687. dogtrati
  13688. Accomodations
  13689. Acting, animal
  13690. actitric
  13691. Be a star
  13692. Adjustment
  13693. pusoanad
  13694. Adjustment
  13695. Adoption
  13696. selecons
  13697. Adopting
  13698. Aggression, signs of
  13699. behapost
  13700. Aggression
  13701. Agility
  13702. actiagil
  13703. Agility
  13704. Air travel
  13705. dogtrati
  13706. Airlines
  13707. dogsorga
  13708. AKC Canine Good Citizen
  13709. akcagoct
  13710. Canine Good Citizen
  13711. AKC Novice
  13712. akcobeno
  13713. Novice
  13714. AKC Obedience
  13715. akobgein
  13716. Obedience
  13717. AKC Open
  13718. akcobeop
  13719. pufithrl
  13720. AKC registration
  13721. AKC Utility
  13722. akcobeut
  13723. Utility
  13724. American Bred
  13725. akcdogsh
  13726. American Bred
  13727. Anatomy
  13728. doanpotb
  13729. Anatomy
  13730. Anxiety, separation
  13731. behaprob
  13732. Separation anxiety
  13733. Appetite, loss of
  13734. healdise
  13735. Loss of appetite
  13736. Aptitude test, puppy 
  13737. puptemte
  13738. Puppy Aptitude Test
  13739. Ascarids (roundworms)
  13740. healpara
  13741. Ascarids
  13742. Assistance dogs
  13743. serassdo
  13744. Assistance Dogs
  13745. Backpacking
  13746. acotdosp
  13747. Backpacking
  13748. Balls
  13749. pupbaseq
  13750. Barking (1)
  13751. behaprob
  13752. Barking
  13753. Barking (2)
  13754. putegoma
  13755. Barking
  13756. Basic obedience
  13757. pupbasob
  13758. Basic obedience
  13759. Bathing
  13760. grotheba
  13761. Beds, dog
  13762. pupbaseq
  13763. Dog kennel:
  13764. Behavior, chains of
  13765. actitric
  13766. Behavior chains
  13767. Behavior, changes
  13768. healdang
  13769. Behavior change
  13770. Behavior, postures
  13771. behapost
  13772. Behaviors
  13773. Behavior, problems
  13774. behaprob
  13775. Problems
  13776. Best of Breed
  13777. akcdogsh
  13778. Best of Breed class
  13779. Best in Show
  13780. akcdogsh
  13781. Best in Show
  13782. Biting
  13783. behaprob
  13784. Biting
  13785. Bloat
  13786. healdise
  13787. Bloat
  13788. Blow drying
  13789. grotheba
  13790. Blow drying
  13791. Body, parts of
  13792. doanpotb
  13793. Parts of the Body
  13794. Bomb detection, training
  13795. serpoldo
  13796. Bomb sniffing
  13797. Bones
  13798. pupbaseq
  13799. Bones and chews
  13800. Bordatella, description
  13801. healdise
  13802. Bordatella
  13803. Bordatella shots
  13804. healvacc
  13805. Bordatella
  13806. Bowls
  13807. pupbaseq
  13808. Bowls:
  13809. Breed groups, AKC
  13810. akcbrecl
  13811. Breed classification
  13812. Breed rescue
  13813. selecons
  13814. Rescue dogs
  13815. Breed selection
  13816. pufithrb
  13817. Right breed
  13818. Breed standard
  13819. akcdogsh
  13820. Official standard
  13821. Breeder referral
  13822. pufithrl
  13823. Breeder referra
  13824. Brindle
  13825. doancoco
  13826. Brindle
  13827. Brisket
  13828. doanpotb
  13829. Brisket
  13830. Bristle brush
  13831. grotheco
  13832. Bristle brush
  13833. Broad jump
  13834. akcobeop
  13835. Exercise 6:
  13836. Brushes
  13837. grotheco
  13838. Brushes
  13839. Brushing teeth
  13840. greatean
  13841. Teeth:
  13842. Bumps, under skin
  13843. healdang
  13844. Bumps:
  13845. Canine Companions
  13846. serassdo
  13847. Canine Companions
  13848. Canine Good Citizen
  13849. akcagoct
  13850. Canine Good Citizen
  13851. Canis, genus
  13852. dog_tidb
  13853. Canis
  13854. Car sickness
  13855. dogtrati
  13856. Carsickness
  13857. Car travel
  13858. dogtrati
  13859. Car travel
  13860. Carbamates
  13861. healflea
  13862. Carbamates
  13863. Carting
  13864. actpulsp
  13865. Carting:
  13866. pusoanad
  13867. Challenging behavior
  13868. behalead
  13869. Natural challenge
  13870. Champion
  13871. akcdogsh
  13872. AKC Champion
  13873. Chew toys
  13874. pupbaseq
  13875. Toys:
  13876. Chewing
  13877. behaprob
  13878. Chewing
  13879. Choosing a breed
  13880. pufithrb
  13881. Right breed
  13882. Choosing a puppy
  13883. puptemte
  13884. Selection
  13885. Clean-up products
  13886. pupbaseq
  13887. Handy stuff
  13888. Coat, care
  13889. grotheco
  13890. Some tips
  13891. Coat colors
  13892. doancoco
  13893. Coat colors
  13894. Coat, dull
  13895. healdang
  13896. Dull coat
  13897. grotheco
  13898. foreign matter
  13899. Collars
  13900. pupbaseq
  13901. Collar:
  13902. Collars, flea
  13903. healflea
  13904. Flea collars
  13905. Comb, flea
  13906. healflea
  13907. Flea combing
  13908. Combs
  13909. grotheco
  13910. toothed comb
  13911. Come!
  13912. pupbasob
  13913. Come:
  13914. Condition, loss of
  13915. healdang
  13916. Loss of condition
  13917. Conditioning, coursing
  13918. actilure
  13919. Physical conditioning
  13920. Conformation
  13921. akcdogsh
  13922. Conformation
  13923. Contracts, new puppy
  13924. pufithrl
  13925. Contract
  13926. Cough
  13927. healdang
  13928. Cough:
  13929. Coursing, lure
  13930. actilure
  13931. Lure coursing
  13932. Coursing, open field
  13933. actilure
  13934. Open Field Coursing
  13935. Cow hocks
  13936. dog_move
  13937. Cow hocks:
  13938. Crabbing
  13939. dog_move
  13940. Crabbing:
  13941. Crate training
  13942. pupphous
  13943. Crate training
  13944. Crates in car
  13945. sta_plfc
  13946. Crates
  13947. Croup
  13948. doanpotb
  13949. Croup
  13950. Cysts
  13951. healdang
  13952. Cysts
  13953. Danger signs, health
  13954. healdang
  13955. Danger signs
  13956. Day care, dog
  13957. dog_tidb
  13958. Day care
  13959. De-tangler
  13960. grotheco
  13961. De-tangler
  13962. Dessicants
  13963. healflea
  13964. Dessicants
  13965. Development, stages of
  13966. pusoanad
  13967. Development
  13968. Dewclaws
  13969. greatean
  13970. Dewclaws
  13971. Dewlap
  13972. doanthhe
  13973. Dewlap
  13974. Diarrhea
  13975. healdang
  13976. Diarrhea:
  13977. Digging
  13978. behaprob
  13979. Digging:
  13980. Discipline
  13981. behadisc
  13982. Discipline
  13983. Distemper
  13984. healdise
  13985. Distemper
  13986. Dog house
  13987. pupbaseq
  13988. Dog house:
  13989. Dog pen
  13990. pupbaseq
  13991. Outdoor enclosure:
  13992. Dominance behaviors
  13993. behapost
  13994. Behaviors:
  13995. Dominance challenges
  13996. behalead
  13997. Natural challenge
  13998. Dominance, rules
  13999. behapsyc
  14000. Rules
  14001. Don't touch! (Leave it!)
  14002. putegoma
  14003. Don't touch
  14004. Down!
  14005. pupbasob
  14006. Down:
  14007. Down, long (3 min)
  14008. akcobeno
  14009. Long down:
  14010. Down, long (5 min)
  14011. akcobeop
  14012. Exercise 7:
  14013. Drying, after bath
  14014. grotheba
  14015. Dysplasia, hip
  14016. healdise
  14017. Hip dysplasia
  14018. Ear care
  14019. greatean
  14020. Ears:
  14021. Ear mites
  14022. healpara
  14023. Ear mites
  14024. Ears, types
  14025. doganaea
  14026. Ectropion
  14027. healdise
  14028. Ectropion
  14029. Entropion
  14030. healdise
  14031. Entropion
  14032. Equipment, agility
  14033. actiagil
  14034. Obstacles
  14035. Equipment, basic
  14036. pupbaseq
  14037. Equipment
  14038. Eyelid, abnormalities
  14039. healdise
  14040. Entropion/Ectropion
  14041. Facts, fascinating
  14042. dog_tidb
  14043. Fascinating facts
  14044. Faults, movement
  14045. dog_move
  14046. Common faults
  14047. Fear period
  14048. pusoanad
  14049. Fear period
  14050. Fear, signs of
  14051. behapost
  14052. Fever
  14053. healdang
  14054. Fever:
  14055. Figure 8
  14056. akcobeno
  14057. Exercise 2:
  14058. Flea control
  14059. healflea
  14060. Flea control
  14061. Flea lifecycle
  14062. healflea
  14063. Life cycle
  14064. Flea collars
  14065. healflea
  14066. impregnated flea collars
  14067. Flea shampoo (1)
  14068. grotheba
  14069. Flea shampoo
  14070. Flea shampoo (2)
  14071. healflea
  14072. flea shampoo
  14073. Flews
  14074. doanthhe
  14075. Flews
  14076. Foggers
  14077. healflea
  14078. Foggers should
  14079. Food, new dog
  14080. pupbaseq
  14081. Dog food:
  14082. dog_move
  14083. Gaits
  14084. Genus, Canis
  14085. dog_tidb
  14086. Canis
  14087. Give!
  14088. putegoma
  14089. Give:
  14090. Good Citizen, Canine
  14091. akcagoct
  14092. Canine Good Citizen
  14093. Grease in coat
  14094. grotheba
  14095. Grease
  14096. Grooming, coat
  14097. grotheco
  14098. Grooming
  14099. Grooming, bath
  14100. grotheba
  14101. greatean
  14102. Grooming
  14103. Grooming, poodles
  14104. grotheco
  14105. Poodles
  14106. Grooming, terriers
  14107. grotheco
  14108. Terriers:
  14109. Grooming tools
  14110. grotheco
  14111. Tools
  14112. Group competition
  14113. akcdogsh
  14114. Group Competition:
  14115. Guide Dogs, general info
  14116. segudftb
  14117. Guide Dogs
  14118. straagdp
  14119. Raising
  14120. Hair loss
  14121. healdang
  14122. Hair loss:
  14123. Harlequin
  14124. doancoco
  14125. Harlequin
  14126. Head, parts of
  14127. doanthhe
  14128. Hearing dogs
  14129. serassdo
  14130. Hearing dogs
  14131. Heartworm
  14132. healpara
  14133. Heartworms
  14134. Heel!
  14135. pupbasob
  14136. (Heel)
  14137. akcobeno
  14138. Exercise 4:
  14139. Hepatitis
  14140. healdise
  14141. Hepatitis
  14142. Herding
  14143. actiherd
  14144. Herding
  14145. Herding group, AKC
  14146. akcbrecl
  14147. Herding group
  14148. Heroes, dog
  14149. stodoghe
  14150. Heroes
  14151. Hiking with dogs
  14152. acotdosp
  14153. Hiking
  14154. Hip Dysplasia
  14155. healdise
  14156. Hip Dysplasia
  14157. doanpotb
  14158. Hotel policies
  14159. dogtrati
  14160. Motel policies
  14161. Hound group, AKC
  14162. akcbrecl
  14163. Hound group
  14164. Housebreaking
  14165. pupphous
  14166. Housebreaking
  14167. Housing
  14168. pupbaseq
  14169. Dog kennel:
  14170. Hypothyroidism
  14171. healdise
  14172. Hypothyroidism
  14173. Identification
  14174. pupbaseq
  14175. Pet ID tag:
  14176. Innoculations
  14177. healvacc
  14178. Vaccinations
  14179. Insect Growth Regulators
  14180. healflea
  14181. Insecticides
  14182. healflea
  14183. Insecticides
  14184. Instinct, herding
  14185. actiherd
  14186. herding instinct
  14187. International travel
  14188. dogtrati
  14189. International
  14190. Itching, severe
  14191. healdang
  14192. Itching, severe:
  14193. Judging, dog shows
  14194. akcdogsh
  14195. AKC judging
  14196. Jumping, AKC Open
  14197. akcobeop
  14198. Jumping, AKC Utility
  14199. akcobeut
  14200. Exercise 5:
  14201. Jumping, directed
  14202. akcobeut
  14203. Directed Jumping
  14204. Jumping up (1)
  14205. behaprob
  14206. Jumping up:
  14207. Jumping up (2)
  14208. putegoma
  14209. Jumping up
  14210. K-9 teams
  14211. serpoldo
  14212. Kennel, air
  14213. pupbaseq
  14214. Dog kennel:
  14215. Kennel, in car
  14216. sta_plfc
  14217. Vari-Kennel
  14218. Kennel, getting used to
  14219. putegoma
  14220. In Your Kennel:
  14221. Kennel, housebreaking
  14222. pupphous
  14223. Crate training:
  14224. Kennel cough
  14225. healdise
  14226. Acute tracheobronchitis
  14227. Leadership
  14228. behalead
  14229. Leadership
  14230. Leave it!
  14231. putegoma
  14232. Leave it
  14233. Leptospirosis
  14234. healdise
  14235. Leptospirosis
  14236. healpara
  14237. doanpotb
  14238. Lure coursing
  14239. actilure
  14240. Lure coursing
  14241. Lyme disease
  14242. healdise
  14243. Lyme disease
  14244. Male vs.female adoption
  14245. selecons
  14246. Male or female?
  14247. Mange
  14248. healpara
  14249. Mange mites
  14250. Manners, teaching
  14251. putegoma
  14252. Manners
  14253. Miscellaneous group, AKC
  14254. akcbrecl
  14255. Miscellaneous
  14256. Mites
  14257. healpara
  14258. Mites
  14259. Mixed breed
  14260. selecons
  14261. Merle
  14262. doancoco
  14263. Merle
  14264. Motel policies
  14265. dogtrati
  14266. Motel policies
  14267. Motivational training
  14268. pupbasob
  14269. Motivational
  14270. Mounting
  14271. behapost
  14272. Mounting
  14273. Movement
  14274. dog_move
  14275. Movement
  14276. Moving stand and exam
  14277. akcobeut
  14278. Exercise 4:
  14279. Mutts
  14280. selecons
  14281. Muzzle
  14282. doanthhe
  14283. Muzzle:
  14284. Nail care
  14285. greatean
  14286. Nails:
  14287. Nail clippers
  14288. greatean
  14289. Guillotine
  14290. serpoldo
  14291. Narcotics
  14292. Nematodes
  14293. healflea
  14294. Nematodes
  14295. Neutering, benefits
  14296. hespanne
  14297. Neutering
  14298. Non-sporting group, AKC
  14299. akcbrecl
  14300. Non-sporting group
  14301. Novice, obedience
  14302. akcobeno
  14303. Novice
  14304. Novice, conformation
  14305. akcdogsh
  14306. Novice:
  14307. Obedience, AKC
  14308. akobgein
  14309. Obedience
  14310. Obedience, AKC Novice
  14311. akcobeno
  14312. Obedience
  14313. Obedience, AKC Open
  14314. akcobeop
  14315. Obedience
  14316. Obedience, AKC Utility
  14317. akcobeut
  14318. Obedience
  14319. Obedience, basic
  14320. pupbasob
  14321. Obedience
  14322. Obedience, puppy
  14323. pupbasob
  14324. Obedience
  14325. Obstacles, agility
  14326. actiagil
  14327. Obstacles
  14328. Occiput
  14329. doanthhe
  14330. Occiput
  14331. putegoma
  14332. Older dogs, adoption
  14333. selecons
  14334. Older dog vs. Puppy
  14335. Open (Conformation)
  14336. akcdogsh
  14337. Open:
  14338. Open (Obedience)
  14339. akcobeop
  14340. Organophosphates
  14341. healflea
  14342. Organophosphates
  14343. healdise
  14344. Paddling
  14345. dog_move
  14346. Paddling:
  14347. healdang
  14348. Tender Spots:
  14349. Paint in coat
  14350. grotheba
  14351. Paint
  14352. Paper training
  14353. pupphous
  14354. Paper
  14355. Parks, dog
  14356. dog_tidb
  14357. Dog parks
  14358. Pastern
  14359. doanpotb
  14360. Pastern
  14361. healdise
  14362. Pain in the stifle joint
  14363. Pedigree
  14364. pufithrl
  14365. Pedigree?
  14366. Pen, dog 
  14367. pupbaseq
  14368. Outdoor enclosure:
  14369. Personality test
  14370. puptemte
  14371. Test for puppies
  14372. Pet shop puppies
  14373. pufithrl
  14374. Pet shops
  14375. Pfaffenberger, Clarence
  14376. puptemte
  14377. Pfaffenberger
  14378. Play posture
  14379. behapost
  14380. Play posture:
  14381. Police dogs
  14382. serpoldo
  14383. Police dogs
  14384. Pounding
  14385. dog_move
  14386. Pounding:
  14387. Program (TM)
  14388. healflea
  14389. New Anti-Flea Drug
  14390. healdise
  14391. Protection training
  14392. serpoldo
  14393. Protection training
  14394. Psychology, canine
  14395. behapsyc
  14396. Psychology
  14397. Pulling 
  14398. putegoma
  14399. Don't Pull:
  14400. Puppy mills
  14401. pufithrl
  14402. Puppy mills
  14403. Puppy shots
  14404. healvacc
  14405. Puppy Shots:
  14406. Puppy test
  14407. puptemte
  14408. Test for puppies
  14409. Pyrethrins
  14410. healflea
  14411. Pyrethrins
  14412. Questions for breeders
  14413. pufithrl
  14414. Quiet!
  14415. putegoma
  14416. Quiet:
  14417. Rabies, description
  14418. healdise
  14419. Rabies:
  14420. Rabies shots
  14421. healvacc
  14422. Rabies
  14423. Rawhide
  14424. pupbaseq
  14425. pressed rawhide
  14426. Recall exercise
  14427. akcobeno
  14428. Exercise 5:
  14429. Repellent, dog
  14430. pupbaseq
  14431. Repellents
  14432. Rescue dogs
  14433. selecons
  14434. Rescue dogs
  14435. Retrieving, AKC Open
  14436. akcobeop
  14437. Retrieve
  14438. Rewards, principles
  14439. behapsyc
  14440. Reward
  14441. Rewards, basic obedience
  14442. pupbasob
  14443. Reward
  14444. putegoma
  14445. Treat
  14446. pusoanad
  14447. Reward
  14448. Rewards, baby adjustment
  14449. dogandba
  14450. Reward
  14451. doancoco
  14452. Roundworm
  14453. healpara
  14454. Roundworms
  14455. Sable
  14456. doancoco
  14457. Sable
  14458. Sarcoptic mange
  14459. healpara
  14460. Sarcoptic mange
  14461. Scent
  14462. actitrac
  14463. How Scent Works
  14464. Scent discrimination
  14465. akcobeut
  14466. Exercise 2:
  14467. Schutzhund, tracking
  14468. actitrac
  14469. Scooting on rear end
  14470. healdang
  14471. Scooting
  14472. actitrac
  14473. Seizures
  14474. healdang
  14475. Seizures
  14476. Selecting a breed
  14477. pufithrb
  14478. Right Breed
  14479. Selecting a puppy
  14480. puptemte
  14481. Helps match
  14482. Separation anxiety
  14483. behaprob
  14484. Separation Anxiety:
  14485. Service dogs, for blind
  14486. segudftb
  14487. Guide dogs
  14488. Service dogs, other
  14489. serassdo
  14490. Trained dogs
  14491. Shampooing
  14492. grotheba
  14493. Shampoo, flea (1)
  14494. grotheba
  14495. Flea shampoo
  14496. Shampoo, flea (2)
  14497. healflea
  14498. Flea shampoo
  14499. Shedding blade
  14500. grotheco
  14501. Shedding blade
  14502. Shelter dogs
  14503. selecons
  14504. Rescue dogs
  14505. Shots
  14506. healvacc
  14507. Shots
  14508. Shots, costs
  14509. doreanre
  14510. Puppy package
  14511. Shows, dog
  14512. akcdogsh
  14513. Shows, dog on-line
  14514. dog_tidb
  14515. Dog Show Info
  14516. Showing, dogs
  14517. akcdogsh
  14518. Showing
  14519. Showing, movement
  14520. dog_move
  14521. Sickle hocks
  14522. dog_move
  14523. Sickle Hocks:
  14524. Sighthound
  14525. actilure
  14526. Sighthounds
  14527. Signal exercise
  14528. akcobeut
  14529. Exercise 1:
  14530. pupbasob
  14531. Sit, long (1 min)
  14532. akcobeno
  14533. Exercise 6:
  14534. Sit, long (3 min)
  14535. akcobeop
  14536. Exercise 7:
  14537. Skijoring
  14538. actpulsp
  14539. Skijoring:
  14540. Skull
  14541. doanthhe
  14542. Skull
  14543. Skunk
  14544. grotheco
  14545. Skunk
  14546. Sledding
  14547. actpulsp
  14548. Sledding:
  14549. Slicker brush
  14550. grotheco
  14551. Slicker brush
  14552. Slipped stifle
  14553. healdise
  14554. Pain in the stifle joint
  14555. Snacks
  14556. pupbaseq
  14557. Treats:
  14558. Sniffing
  14559. behapost
  14560. Sniffing:
  14561. Social assistance dogs
  14562. serassdo
  14563. Social dogs
  14564. Socialization  
  14565. pusoanad
  14566. Puppies:
  14567. Sound sensitivity
  14568. puptemte
  14569. Sound sensitivity
  14570. Spaying, benefits
  14571. hespanne
  14572. Spaying
  14573. Speak!
  14574. putegoma
  14575. Speak
  14576. Sporting group, AKC
  14577. akcbrecl
  14578. Sporting group
  14579. Stand!
  14580. pupbasob
  14581. Stand:
  14582. Stand for Exam
  14583. akcobeno
  14584. Exercise 3:
  14585. Stand, moving
  14586. akcobeut
  14587. Exercise 4:
  14588. Stay! (Wait!)
  14589. pupbasob
  14590. Wait:
  14591. Stifle
  14592. doanpotb
  14593. Stifle
  14594. Stockdog trials 
  14595. actiherd
  14596. Stockdog Program
  14597. Stomach pain
  14598. healdang
  14599. Stomach pain:
  14600. doanthhe
  14601. Structure
  14602. dog_move
  14603. Structure
  14604. Structure, evaluating
  14605. pupevast
  14606. Structure
  14607. Structure, puppy
  14608. pupevast
  14609. Structure
  14610. Styptic powder
  14611. greatean
  14612. Styptic powder
  14613. Submissive behaviors
  14614. behapost
  14615. Submissive behaviors:
  14616. Submissive urination
  14617. behaprob
  14618. Submissive urination:
  14619. Symptoms, disease
  14620. healdise
  14621. Symptoms
  14622. Tangles
  14623. grotheco
  14624. Tangles:
  14625. Tapeworm
  14626. healpara
  14627. Tapeworms
  14628. Teeth, care
  14629. greatean
  14630. Teeth:
  14631. Temperament test
  14632. puptemte
  14633. Temperament testing
  14634. Temperature, taking
  14635. healdang
  14636. Temperature
  14637. Termites and dogs
  14638. dog_tidb
  14639. Termites
  14640. Terrier group, AKC
  14641. akcbrecl
  14642. Terrier group
  14643. Test, puppy temperament
  14644. puptemte
  14645. Therapy dogs
  14646. serthedo
  14647. Therapy dogs
  14648. Thyroid problems
  14649. healdise
  14650. Hypothyroidism
  14651. Ticks
  14652. healpara
  14653. Ticks
  14654. Ticks, Lyme disease
  14655. healdise
  14656. Lyme disease
  14657. Titles, AKC obedience
  14658. akobgein
  14659. AKC Obedience Titles:
  14660. Touch sensitivity
  14661. puptemte
  14662. Touch sensitivity
  14663. healflea
  14664. Toxicity
  14665. Toy group, AKC
  14666. akcbrecl
  14667. Toy group
  14668. Toys 
  14669. pupbaseq
  14670. Toys:
  14671. Tracking
  14672. actitrac
  14673. Tracking
  14674. Travel
  14675. dogtrati
  14676. Travel
  14677. Treats
  14678. pupbaseq
  14679. Treats:
  14680. pupbasob
  14681. Obedience
  14682. Training, dominant dogs
  14683. behalead
  14684. Dominant dogs
  14685. Training, manners
  14686. putegoma
  14687. Teaching
  14688. Training, AKC obedience
  14689. akobgein
  14690. Preparing for Obedience
  14691. Training, puppies
  14692. pupbasob
  14693. Obedience
  14694. Training, tricks
  14695. actitric
  14696. Three Ways to Train
  14697. Tri-color
  14698. doancoco
  14699. Tri-color
  14700. Tricks
  14701. actitric
  14702. Tricks!
  14703. Trivia
  14704. dog_tidb
  14705. Tidbits
  14706. Tumors
  14707. healdang
  14708. Tumors
  14709. Urination, submissive
  14710. behaprob
  14711. Submissive Urination:
  14712. Urination, unusual
  14713. healdang
  14714. Urination
  14715. Utility
  14716. akcobeut
  14717. Utility
  14718. Vacationing with dog
  14719. dogtrati
  14720. Travel
  14721. Vaccinations
  14722. healvacc
  14723. Vaccinations
  14724. healflea
  14725. Vacuuming
  14726. Volhard, Jack and Wendy
  14727. puptemte
  14728. Volhard
  14729. Vomiting
  14730. healdang
  14731. Vomiting
  14732. Von Willebrand's disease
  14733. healdise
  14734. Von Willebrand's
  14735. Wait! (Stay!)
  14736. pupbasob
  14737. Wait:
  14738. Warts
  14739. healdang
  14740. Warts
  14741. Weight Pulling
  14742. actpulsp
  14743. Weight Pulling:
  14744. Winners Dog/Bitch
  14745. akcdogsh
  14746. Winners Dog
  14747. Withers
  14748. doanpotb
  14749. Withers
  14750. Witmer-Tyson Imports
  14751. serpoldo
  14752. Witmer-Tyson
  14753. Wolf hybrids
  14754. wolfhybr
  14755. Wolf hybrids
  14756. Working group, AKC
  14757. akcbrecl
  14758. Working group
  14759. Worming
  14760. healvacc
  14761. Worming:
  14762. Worms
  14763. healpara
  14764. Worms
  14765. BP$P$P$P$
  14766. P2P$P$P$1
  14767. +**e`
  14768. /[*harH
  14769. 3uaZ*r
  14770. 027=;
  14771. =7112
  14772. j/q//
  14773. jsj@@BC
  14774. FEsj@@
  14775. ?;?+]f
  14776. pjqwI
  14777. soops
  14778. <1    :6=
  14779. ?==>>>
  14780. =5=<?
  14781. T9222
  14782. nnqjoli
  14783. >>>>>
  14784. 77=><017
  14785. C@C_C_//
  14786. o/qlC
  14787. =INFO
  14788. Main Card-5SCRP
  14789. on openCard
  14790.   global bookDirPrefix, curDirPrefix, rowSavers
  14791.   put bookDirPrefix into curDirPrefix
  14792.   put item 5 of rowSavers into savedRow
  14793.   put first item of hilitedRows of card picklist "Book List" into curRow
  14794.   if savedRow <> curRow then    -- Things are not as we left them.
  14795.     unhilite card picklist "Book List"
  14796.     hilite row savedRow of card picklist "Book List"
  14797.   end if
  14798.   send getFileBook to card picklist "Book List"  
  14799.   send hideYourself to bg button id 10    -- "Picture "
  14800.   send hideYourself to bg button id 8      -- "Text"
  14801.   hide bg  button id 19   -- "Print"
  14802.   hide bg bitmap "Print Up"
  14803.   hide bg button "Puppy Test"
  14804.   hide bg bitmap "puptest up"
  14805.   pass openCard
  14806. end openCard
  14807. on closeCard
  14808.   send showYourself to bg button id 10    -- "Picture "
  14809.   send showYourself to bg button id 8      -- "Text"
  14810.   show bg  button id 19   -- "Print"
  14811.   show bg bitmap "Print Up"
  14812.   pass closeCard
  14813. end closeCard
  14814. Print Updata
  14815. bbbbbb
  14816. bbbbb
  14817. bbbbbb
  14818. bbbbb
  14819. bbbbb
  14820. bbbbbb
  14821. bbbbb
  14822. bbbbbbbbbb
  14823. bbbbb
  14824. bbbbb
  14825. LL<<<<
  14826. <<<<<<<<
  14827. <<<<<<<<
  14828. <<<L<<<
  14829. bbbbbbbbbb
  14830. bbbbb
  14831. bbbbb
  14832. bbbbbb
  14833. SSff55
  14834. Print Downdata
  14835. """Mooo
  14836. """Mooo
  14837. LL<<<<
  14838. <<<<<<<<
  14839. <<<<<<<<
  14840. <<<L<<<
  14841. """Mooo
  14842.     Book ListSCRP
  14843. on mouseUp theRow,theCol
  14844.   global myBusy, curFileDog, rowSavers
  14845.   if theRow = (item 5 of rowSavers) then exit mouseUp
  14846.   set cursor to myBusy
  14847.   put cell theRow,2 of me into curFileDog
  14848.   put theRow into item 5 of rowSavers
  14849.   lock screen
  14850.   put empty into bg field "Dog Info"
  14851.   send showYourself to bg field "Dog Info"
  14852.   if the platform is "Macintosh" then
  14853.     unlock screen with visual effect pixelDissolve in 40 ticks
  14854.   else
  14855.     unlock screen with visual effect blinds up in 40 ticks
  14856.   end if
  14857.   set cursor to Browse
  14858. end mouseUp
  14859. on getFileBook
  14860.   global curFileDog
  14861.   put first item of hilitedRows of me into theRow
  14862.   if theRow is not empty then
  14863.     if theRow > 12 then set the vertical scrollLine of me to theRow-2
  14864.     put cell theRow,2 of me into curFileDog
  14865.   end if
  14866. end getFileBook
  14867. on getBookTable
  14868.   -- Read the "books.lst" file and put it into this picklist.
  14869.   -- This message is only used during development; it will never be
  14870.   -- called in the production version.
  14871.   global filePath
  14872.   set cursor to watch
  14873.   put filePath & "books.lst" into idxTable
  14874.   open file idxTable
  14875.   repeat with idx=1 to 500
  14876.     read from file idxTable until return
  14877.     if the result is not empty then exit repeat
  14878.     put it after tempHolder
  14879.     put "book-" & idx
  14880.   end repeat
  14881.   delete the last character of tempHolder
  14882.   put tempHolder into me
  14883.   close file idxTable
  14884. end getBookTable
  14885. MOCELL10
  14886. Agility, Flyball, Frisbee, Games
  14887. Behavior & Training (A-C)
  14888. Behavior & Training (D-H)
  14889. Behavior & Training (I-Z)
  14890. Behavior & Training (Audio/Video)
  14891. Breeding, Whelping, and Genetics
  14892. California Dog Owners - Special Interest
  14893. Encyclopedias, Handbooks, Dog Groups
  14894. Kennel Building & Managing
  14895. Of Special Interest to Children
  14896. Showing & Judging (Conformation)
  14897. Sledding, Carting & Northern Lore
  14898. American Pit Bull Terrier
  14899. American Staffordshire Terrier 
  14900. Cavalier King Charles Spaniel
  14901. Collie (Rough and Smooth)
  14902. Fox Terrier (Wire and Smooth)
  14903. German Shorthaired Pointer
  14904. German Wirehaired Pointer
  14905. Greater Swiss Mountain Dog
  14906. Louisiana Catahoula Leopard Dog
  14907. Nova Scotia Duck Tolling Retriever
  14908. Petit Basset Griffon Vendeen
  14909. Shetland Sheepdog (Sheltie)
  14910. Soft-Coated Wheaten Terrier
  14911. Staffordshire Bull Terrier
  14912. West Highland White Terrier
  14913. Wirehaired Pointing Griffon
  14914. Ordering Information
  14915. intro___
  14916. agflfrga
  14917. Animal Rescue & Adoption
  14918. anreanad
  14919. Backpacking
  14920. backpack
  14921. beantrac
  14922. beantrdh
  14923. beantriz
  14924. beantrav
  14925. brwhange
  14926. cadoowsp
  14927. Careers With Pets
  14928. carwitpe
  14929. Dog Law
  14930. dog_law_
  14931. Dogs that Serve Mankind
  14932. dothhema
  14933. enhadogr
  14934. Fiction
  14935. fiction_
  14936. Fiction - Mysteries
  14937. fictmyst
  14938. Gazehounds / Sighthounds
  14939. sighthou
  14940. Grooming
  14941. grooming
  14942. Guard Dogs & Schutzhund
  14943. gudoansc
  14944. Health Care
  14945. healcare
  14946. Herding
  14947. herding_
  14948. Humor
  14949. humor___
  14950. Hunting
  14951. hunting_
  14952. kebuanma
  14953. Name Books
  14954. namebook
  14955. Nutrition & General Care
  14956. nuangeca
  14957. ofspintc
  14958. Pet Loss
  14959. pet_loss
  14960. Potpourri & Gift Books
  14961. poangibo
  14962. Selecting a Dog
  14963. seleadog
  14964. shanjuco
  14965. Sighthounds / Gazehounds
  14966. sighthou
  14967. slcaannl
  14968. Software
  14969. software
  14970. Stock Dogs
  14971. herding_
  14972. Tracking
  14973. tracking
  14974. Traveling with your Dog
  14975. trwiyodo
  14976. Veterinary Texts
  14977. vetetext
  14978. Wolves and Wild Dogs
  14979. woanwido
  14980. Affenpinscher
  14981. affenpin
  14982. Afghan Hound
  14983. afghhoun
  14984. Airedale Terrier
  14985. aireterr
  14986. Akita 
  14987. akita___
  14988. Alaskan Malamute
  14989. alasmala
  14990. American Bulldog
  14991. amerbull
  14992. American Eskimo
  14993. amereski
  14994. American Foxhound
  14995. amerfoxh
  14996. ampibute
  14997. amestate
  14998. American Water Spaniel
  14999. amewatsp
  15000. Anatolian Shepherd
  15001. anatshep
  15002. Australian Cattle Dog
  15003. auscatdo
  15004. Australian Kelpies
  15005. austkelp
  15006. Australian Shepherd
  15007. austshep
  15008. Australian Silky Terrier
  15009. aussilte
  15010. Australian Terrier
  15011. austterr
  15012. Basenji
  15013. basenji_
  15014. Basset Hound
  15015. basshoun
  15016. Beagle
  15017. beagle__
  15018. Bearded Collie
  15019. bearcoll
  15020. Beauceron
  15021. no_books
  15022. Bedlington Terrier
  15023. bedlterr
  15024. Belgian Malinois
  15025. belgmali
  15026. Belgian Sheepdog
  15027. belgshee
  15028. Belgian Tervuren
  15029. belgterv
  15030. Bernese Mountain Dog
  15031. bermoudo
  15032. Bichon Frise
  15033. bichfris
  15034. Black and Tan Coonhound
  15035. blantaco
  15036. Bloodhound
  15037. bloodhou
  15038. Border Collie
  15039. bordcoll
  15040. Border Terrier
  15041. bordterr
  15042. Borzoi
  15043. borzoi__
  15044. Boston Terrier
  15045. bostterr
  15046. Bouvier des Flandres
  15047. boudesfl
  15048. Boxer
  15049. boxer___
  15050. Briard
  15051. briard__
  15052. Brittany 
  15053. brittany
  15054. Brussels Griffon
  15055. brusgrif
  15056. Bulldog
  15057. bulldog_
  15058. Bullmastiff
  15059. bullmast
  15060. Bull Terrier
  15061. bullterr
  15062. Cairn Terrier
  15063. cairterr
  15064. Canaan Dog
  15065. canadog_
  15066. Cardigan Welsh Corgi
  15067. carwelco
  15068. cakichsp
  15069. Cesky Terrier
  15070. no_books
  15071. Chesapeake Bay Retriever
  15072. chebayre
  15073. Chihuahua
  15074. chihuahu
  15075. Chinese Crested
  15076. chincres
  15077. Chinese Shar-Pei
  15078. chishape
  15079. Chow Chow
  15080. chowchow
  15081. Clumber Spaniel
  15082. clumspan
  15083. Cocker Spaniel
  15084. cockspan
  15085. coroansm
  15086. Coonhound, Black and Tan
  15087. blantaco
  15088. Curly-Coated Retriever
  15089. curcoare
  15090. Dachshund
  15091. dachshun
  15092. Dalmatian
  15093. dalmatia
  15094. Dandie Dinmont Terrier
  15095. dandinte
  15096. Doberman Pinscher
  15097. dobepins
  15098. Dogo Argentino
  15099. no_books
  15100. Dogue de Bordeaux
  15101. no_books
  15102. English Bulldog
  15103. bulldog_
  15104. English Cocker Spaniel
  15105. engcocsp
  15106. English Foxhound
  15107. englfoxh
  15108. English Setter
  15109. englsett
  15110. English Springer Spaniel
  15111. engsprsp
  15112. English Toy Spaniel
  15113. engtoysp
  15114. Eskimo Dog
  15115. eskidog_
  15116. Field Spaniel
  15117. fielspan
  15118. Fila Brasileiro
  15119. filabras
  15120. Finnish Spitz
  15121. finnspit
  15122. Flat-Coated Retriever
  15123. flacoare
  15124. Foxhound
  15125. foxhound
  15126. fotewias
  15127. French Bulldog
  15128. frenbull
  15129. Gazehounds
  15130. sighthou
  15131. German Shepherd Dog
  15132. gershedo
  15133. gershopo
  15134. gerwirpo
  15135. Giant Schnauzer
  15136. gianschn
  15137. Glen of Imaal Terrier
  15138. no_books
  15139. Golden Retriever
  15140. goldretr
  15141. Gordon Setter
  15142. gordsett
  15143. Great Dane
  15144. greadane
  15145. Great Pyrenees 
  15146. greapyre
  15147. grswmodo
  15148. Greyhound
  15149. greyhoun
  15150. Harrier
  15151. harrier_
  15152. Hovawart
  15153. no_books
  15154. Ibizan Hound
  15155. ibizhoun
  15156. Irish Setter
  15157. irissett
  15158. Irish Terrier
  15159. iristerr
  15160. Irish Water Spaniel
  15161. iriwatsp
  15162. Irish Wolfhound
  15163. iriswolf
  15164. Israeli Canaan Dog
  15165. canadog_
  15166. Italian Greyhound
  15167. italgrey
  15168. Jack Russell Terrier
  15169. jacruste
  15170. Japanese Chin
  15171. japachin
  15172. Keeshond
  15173. keeshond
  15174. Kerry Blue Terrier
  15175. kerblute
  15176. Komondor
  15177. komondor
  15178. Kuvasz
  15179. kuvasz__
  15180. Labrador Retriever
  15181. labrretr
  15182. Lakeland Terrier
  15183. laketerr
  15184. Leonberger
  15185. no_books
  15186. Lhasa Apso
  15187. lhasapso
  15188. localedo
  15189. Lurcher
  15190. lurcher_
  15191. Maltese
  15192. maltese_
  15193. Manchester Terrier
  15194. mancterr
  15195. Mastiff
  15196. mastiff_
  15197. Miniature Bull Terrier
  15198. minbulte
  15199. Miniature Pinscher
  15200. minipins
  15201. Miniature Schnauzer
  15202. minischn
  15203. Neapolitan Mastiff
  15204. neapmast
  15205. Newfoundland
  15206. newfound
  15207. Norfolk Terrier
  15208. norfterr
  15209. Norwegian Elkhound
  15210. norwelkh
  15211. Norwegian Lundehund
  15212. norwlund
  15213. Norwich Terrier
  15214. norwterr
  15215. noscdutr
  15216. Old English Sheepdog
  15217. oldengsh
  15218. Otterhound
  15219. otterhou
  15220. Papillon
  15221. papillon
  15222. Pekingese
  15223. pekinges
  15224. Pembroke Welsh Corgi
  15225. pemwelco
  15226. pebagrve
  15227. Pharoah Hound
  15228. pharhoun
  15229. Pointer
  15230. pointer_
  15231. Polish Lowland Sheepdog
  15232. pollowsh
  15233. Pomeranian
  15234. pomerani
  15235. Poodle
  15236. stanpood
  15237. Portugese Water Dog
  15238. porwatdo
  15239. pug_____
  15240. puli____
  15241. Rhodesian Ridgeback
  15242. rhodridg
  15243. Rottweiler
  15244. rottweil
  15245. St. Bernard
  15246. st__bern
  15247. Saluki
  15248. saluki__
  15249. Samoyed
  15250. samoyed_
  15251. Schipperke
  15252. schipper
  15253. Scottish Deerhound
  15254. scotdeer
  15255. Scottish Terrier
  15256. scotterr
  15257. Sealyham Terrier
  15258. sealterr
  15259. Setters
  15260. setters_
  15261. Sheepdogs - Rare Breeds
  15262. sherarbr
  15263. shetshee
  15264. Shiba 
  15265. shiba___
  15266. Shih Tzu
  15267. shihtzu_
  15268. Siberian Husky
  15269. sibehusk
  15270. Sighthounds
  15271. sighthou
  15272. Silky Terrier
  15273. silkterr
  15274. Skye Terrier
  15275. skyeterr
  15276. socowhte
  15277. stabulte
  15278. Standard Poodle
  15279. stanpood
  15280. Standard Schnauzer
  15281. stanschn
  15282. Sussex Spaniel
  15283. sussspan
  15284. Terriers
  15285. terriers
  15286. Tibetan Mastiff
  15287. tibemast
  15288. Tibetan Spaniel
  15289. tibespan
  15290. Tibetan Terrier
  15291. tibeterr
  15292. no_books
  15293. Toy Fox Terrier
  15294. toyfoxte
  15295. Vizsla
  15296. vizsla__
  15297. Weimaraner
  15298. weimaran
  15299. Welsh Corgi
  15300. pemwelco
  15301. Welsh Springer Spaniel
  15302. welsprsp
  15303. Welsh Terrier
  15304. welsterr
  15305. wehiwhte
  15306. Whippet
  15307. whippet_
  15308. wirpoigr
  15309. Yorkshire Terrier
  15310. yorkterr
  15311.  putNAME
  15312. Dog CaptionSCRP
  15313. on showYourself
  15314.   global filePath, curFileDog, capDirSuffix, textExt, curDirPrefix
  15315.   show me
  15316.   if me is empty then  
  15317.     put filePath & curDirPrefix & capDirSuffix  & curFileDog & textExt into dogFile
  15318.     open file dogFile
  15319.     repeat with idx=1 to 500
  15320.       --put idx
  15321.       read from file dogFile until return
  15322.       if the result is not empty then exit repeat
  15323.       put it into line idx of me
  15324.     end repeat
  15325.     close file dogFile 
  15326.   end if
  15327. end showYourself
  15328. This book list is provided courtesy of 4-M Enterprises, Inc.
  15329. To order books by phone, call (800) 487-9867.
  15330. To order by mail, click on the "Print Order Form" button below (make sure your computer is connected to a printer).
  15331. For product inquiries or current pricing, call 
  15332. (510) 489-8722.TAIL
  15333. Print Order FormSCRP
  15334. on mouseUp
  15335.   show card bitmap "Print Up"
  15336.   hide card bitmap "Print Down"
  15337.     push this card
  15338.     lock screen
  15339.     print card "Order Form"
  15340.     pop card
  15341. end mouseUp
  15342. on mouseDown
  15343.   show card bitmap "Print Down"
  15344.   hide card bitmap "Print Up"
  15345.   repeat until the mouse is up
  15346.     if the mouseloc is within the rectangle of me then
  15347.       show card bitmap "Print Down"
  15348.       hide card bitmap "Print Up"
  15349.     else
  15350.       show card bitmap "Print Up"
  15351.       hide card bitmap "Print Down"
  15352.     end if
  15353.   end repeat
  15354. end mouseDown
  15355. BP$P$P$P$
  15356. P2P$P$P$1
  15357. +**e`
  15358. /[*harH
  15359. 3uaZ*r
  15360. 7    zzMs
  15361. sm]os
  15362. <1    :6=
  15363. ?==>>>
  15364. =5=<?
  15365. 22<61129
  15366.  > ' 
  15367. >>>>>
  15368. 77=><017
  15369. oo6oooj
  15370. C@C_C_//
  15371. mlmpo
  15372. o/qlC
  15373. @INFO
  15374. Exact Colorscard
  15375. field id 1data
  15376. "Complete Guide to Dogs"
  15377. requires that your monitor be set
  15378. to exactly 256 colors.  Please
  15379. make that change and start again.TAIL
  15380. OKSCRP
  15381. on mouseUp
  15382.   set cursor to watch
  15383.   send quit to stack
  15384. end mouseUp
  15385. CINFO
  15386.     Help CardSCRP
  15387. on openCard
  15388.   hide bg button id 4
  15389.   hide bg bitmap "Prev Up"
  15390.   show bg button id 1
  15391.   show bg bitmap "Next Up"
  15392.   if the platform is "Macintosh" then
  15393.     show card field id 19
  15394.     hide card field id 21
  15395.   else
  15396.     show card field id 21
  15397.     hide card field id 19
  15398.   end if
  15399.   pass openCard
  15400. end openCard
  15401. bitmap id 1data
  15402. 87/7/7
  15403. 77/7/
  15404. t]]Jt]
  15405. S]1&F2>&>2%1&
  15406. /uxD/
  15407. /uxD/
  15408. jEaS^
  15409. +++JJa+aaJ+++
  15410. xxxxxxxxx
  15411. 22J++JJ2
  15412. aJ++Ja++
  15413. aa+++J+
  15414. ++++++
  15415. 11ii&
  15416. C/ooo
  15417. oooso
  15418. jjjjjjjjjj
  15419. ooooo
  15420. xoxxoo
  15421. F))^(
  15422. ^)o1)
  15423. )))1^
  15424. >>))^
  15425. +GxF^FJFoF
  15426. $VuWtt
  15427. 7NONO6%
  15428. 6DD..
  15429. 7777f%x
  15430. &11^^)
  15431. )1^o11>>
  15432. }+v|y
  15433.     j/jj
  15434. j/jjj
  15435. +u|xWMg
  15436. jjjjj
  15437. //////
  15438. 7//7//7//7
  15439. |SSr0
  15440. ojoooo
  15441. //T+?,,/,
  15442. SZ"Sy
  15443. /CC%^
  15444. /Sx!W
  15445. xx|yW+
  15446. +xxxxxx
  15447. xxxxxxx
  15448. K3KJ;C:;
  15449. *bx(;
  15450. ID8gI
  15451. ojooo
  15452. E+nn5
  15453. HH5056
  15454. 1IIbz1
  15455. BB?:?:
  15456. S&?~.i
  15457. /Ynj66
  15458. (Xnn~z~~
  15459. +ST/W
  15460. iqnnn
  15461. ~nnnn
  15462. 3,3,#
  15463. ~nY8"
  15464. /h{0r
  15465. aHHHHaaHH
  15466. 0aHHHGHHGHaHG0
  15467. 0H0HH`
  15468. yG5"MMMMM
  15469. &()&)
  15470. PLC>Bsx)P()B
  15471. ooooo
  15472. (:(:kkkjprqqjQ
  15473. r()}):j(MjU
  15474. Urj(BkT#
  15475. rGjB?jX
  15476. T4O7,
  15477. {z-VC
  15478. J1e}YD.rv
  15479. {'{D.
  15480. XXXCXXJ
  15481. DUXXd
  15482. iX[XX
  15483. }r7[iiX}[C
  15484. XX\XXD
  15485. :w2TtkAM-.
  15486. 1Fll]2
  15487. %]]Jx
  15488. fffff
  15489. fffMf
  15490. fffffffMMf
  15491. MMMMMMMfff
  15492. 2222222
  15493. JJJJJJJ2
  15494. 22JJJJJJ2JJ2J2J222J
  15495. JJJJJJ2
  15496. JJJJJJJ22
  15497. 2JJJJJJ2
  15498. 5QI:k
  15499. jxW I
  15500. 2^82x
  15501. ojoox
  15502. j/@a0
  15503. jo/@p
  15504. ]7BI"
  15505. 7BI"^
  15506. 0/27J
  15507. oP5rp
  15508. jxW I
  15509. ^87/x
  15510. kjq:x^k
  15511. &kk<2
  15512. ]7BI"
  15513. "MfMfMf"
  15514. "MfMfMf"
  15515. ojojo
  15516. +++++
  15517. ++++Jaa+aa
  15518. ++++++++++
  15519. jljjj
  15520. C_oooo
  15521. B(m(mB
  15522. m((((((m
  15523. mm(B(B(B(m
  15524. m(B(((
  15525. mmm((m
  15526. mm((mm(B(B
  15527. B((m(((mm((mm
  15528. ooqoD
  15529. x>x>x>1)
  15530. Y7njl
  15531. ^o?]&
  15532. oojooooj
  15533. )Jm1)
  15534. ooojo
  15535. x&>B?(
  15536. ltJ/jE
  15537. 0/B-Y
  15538. ooooo
  15539. Eo^/j
  15540. k6kM]lD
  15541. poooo
  15542. 1%%]E
  15543. F)^(?(
  15544. jjjjj
  15545. ooooo
  15546. ooooo
  15547. >GGGF
  15548. o@@@/
  15549. 3tn4n(6}\
  15550. jooqqoooj
  15551. (.~.hR
  15552. oJo%^G
  15553. E,E/oj
  15554. B    nyJ
  15555. o@oooo
  15556. >?XSx
  15557. jjj/j
  15558. &{WuSaD
  15559. ixVZ#
  15560. Jjjr 
  15561. [>GD[x
  15562. xxxxx
  15563. xx^oxx^ox
  15564. field id 2data
  15565. Click on a grey folder tab to move to the named screen.  The current screen is indicated by the colored tab.TAIL
  15566. shape id 3TAIL
  15567. shape id 4TAIL
  15568. shape id 5TAIL
  15569. shape id 6TAIL
  15570. shape id 7TAIL
  15571. shape id 8TAIL
  15572.     INFO
  15573. field id 9data
  15574. The "down" button  indicates what you are currently seeing.  Click the "up" button to see the item indicated by the name of the button.
  15575. Some breeds and articles have a single accompan- ying "Big Picture", others have a slide show .
  15576. Some articles have a movie in place of the small picture.
  15577. The names of these buttons will change according to what's available.TAIL
  15578. shape id 10TAIL
  15579. field id 11data
  15580. Click on a name to see information about that breed or article.
  15581. After the name, an "(S)" means there is an accompanying slide show, an "(M)" means there is a movie.TAIL
  15582. shape id 12TAIL
  15583. field id 13data
  15584. Click here to print the current text (make sure your computer is connected to a printer).  The pictures can't be printed.TAIL
  15585. shape id 14TAIL
  15586. field id 15data
  15587. Click here to go to a questionnaire that will help you find the best dog for you.TAIL
  15588. button id 17SCRP
  15589. on mouseUp
  15590.   global myBusy
  15591.   set cursor to myBusy
  15592.   lock screen
  15593.   go card "Questionnaire Help"
  15594.   unlock screen with visual effect blinds down fast
  15595.   set cursor to Browse
  15596. end mouseUp
  15597. field id 19data
  15598. Hold down the option key and double-click on any word.  If that word appears in the index, you will automatically be taken to the index and shown the article or breed description that explains that word.TAIL
  15599. shape id 20TAIL
  15600. field id 21data
  15601. Hold down the alt key and double-click on any word.  If that word appears in the index, you will automatically be taken to the index and shown the article (or breed description) that explains that word.TAIL
  15602. General HelpTAIL
  15603. DINFO
  15604. Selector Checkcard
  15605. Comparison Tabledata
  15606. MOCELL10
  15607. Looks
  15608. medium
  15609. medium
  15610. medium
  15611. medium
  15612. short
  15613. short
  15614. short
  15615. short
  15616. Barking
  15617. not ok
  15618. average
  15619. average
  15620. average
  15621. average
  15622. Training
  15623. advanced
  15624. very easy
  15625. very easy
  15626. very easy
  15627. very easy
  15628. Exercise
  15629. moderate
  15630. moderate
  15631. moderate
  15632. moderate
  15633. moderate
  15634. Grooming
  15635. v. little
  15636. v. little
  15637. v. little
  15638. v. little
  15639. v. little
  15640. Prof. Grooming
  15641. Docking
  15642. not ok
  15643. Novice owner
  15644. Dominance (primary c.g.)
  15645. Dominance (2ndary c.g.)
  15646. Friendliness
  15647. reserved
  15648. Independence
  15649. v. indep.
  15650. independ.
  15651. independ.
  15652. independ.
  15653. independ.
  15654. Children
  15655. older/eld.
  15656. older
  15657. older
  15658. older
  15659. older
  15660. Other Pets
  15661. frm ppyhd
  15662. frm ppyhd
  15663. frm ppyhd
  15664. frm ppyhd
  15665. Outdoor Space
  15666. average
  15667. average
  15668. average
  15669. average
  15670. average
  15671. Climate
  15672. moderate
  15673. Handicapped Assistance
  15674. blind
  15675. blind
  15676. blind
  15677. blind
  15678. Jogging
  15679. v. good
  15680. v. good
  15681. v. good
  15682. v. good
  15683. Hunting
  15684. Sighting
  15685. Tracking
  15686. Retrieving
  15687. Pointing
  15688. Herding
  15689. Watchdog
  15690. Guarding
  15691. Companion Dog
  15692. Search & Rescue
  15693. Water Rescue
  15694. Guide for the Blind
  15695. Snow Sledding
  15696. Carting
  15697. Weight Pulling
  15698. Agility
  15699. Lure Coursing
  15700. Competitive Obedience
  15701. Schutzhund
  15702. Tricks
  15703. Attribute
  15704. Ideal Dog
  15705. Chesap
  15706. Chesap
  15707. Englis
  15708. Kerry 
  15709. Match Listdata
  15710. MOCELL10
  15711. Collie (Rough and Smooth) (S)
  15712. Curly-Coated Retriever (S)
  15713. Canaan Dog (S)
  15714. canadog_
  15715. Cardigan Welsh Corgi
  15716. carwelco
  15717. Shetland Sheepdog
  15718. shetshee
  15719. American Eskimo
  15720. amereski
  15721. Schipperke
  15722. schipper
  15723. Pomeranian
  15724. pomerani
  15725. puli____
  15726. Pembroke Welsh Corgi
  15727. pemwelco
  15728. Australian Cattle Dog
  15729. auscatdo
  15730. Shiba  (S)
  15731. shiba___
  15732. Border Collie (S)
  15733. bordcoll
  15734. German Shepherd Dog (S)
  15735. gershedo
  15736. Belgian Malinois (S)
  15737. belgmali
  15738. Belgian Tervuren
  15739. belgterv
  15740. Beauceron
  15741. beaucero
  15742. Belgian Sheepdog
  15743. belgshee
  15744. Basenji
  15745. basenji_
  15746. Australian Shepherd (S)
  15747. austshep
  15748. Bearded Collie (S)
  15749. bearcoll
  15750. Irish Terrier
  15751. iristerr
  15752. Manchester Terrier (Toy)
  15753. manterto
  15754. Scottish Terrier
  15755. scotterr
  15756. French Bulldog
  15757. frenbull
  15758. Chow Chow
  15759. chowchow
  15760. Welsh Terrier
  15761. welsterr
  15762. coroansm
  15763. Norwegian Elkhound
  15764. norwelkh
  15765. Chinese Shar-Pei (S)
  15766. chishape
  15767. Chesapeake Bay Retriever
  15768. chebayre
  15769. Samoyed
  15770. samoyed_
  15771. Keeshond
  15772. keeshond
  15773. Weimaraner
  15774. weimaran
  15775. Tibetan Spaniel
  15776. tibespan
  15777. Miniature Poodle
  15778. minipood
  15779. Bichon Frise
  15780. bichfris
  15781. Sealyham Terrier
  15782. sealterr
  15783. Beagle
  15784. beagle__
  15785. Bull Terrier
  15786. bullterr
  15787. Skye Terrier
  15788. skyeterr
  15789. pug_____
  15790. Tibetan Terrier
  15791. tibeterr
  15792. Lakeland Terrier
  15793. laketerr
  15794. Chinese Crested
  15795. chincres
  15796. Akita 
  15797. akita___
  15798. Labrador Retriever
  15799. labrretr
  15800. tosa____
  15801. Border Terrier
  15802. bordterr
  15803. Dachshund (S)
  15804. dachshun
  15805. Fox Terrier (Smooth)
  15806. foxtersm
  15807. Australian Terrier
  15808. austterr
  15809. Whippet (S)
  15810. whippet_
  15811. Pekingese
  15812. pekinges
  15813. American Water Spaniel
  15814. amewatsp
  15815. Shih Tzu
  15816. shihtzu_
  15817. Cocker Spaniel
  15818. cockspan
  15819. Maltese
  15820. maltese_
  15821. Bouvier des Flandres
  15822. boudesfl
  15823. Miniature Pinscher
  15824. minipins
  15825. Toy Poodle
  15826. toy_pood
  15827. curcoare
  15828. EINFO
  15829. Order Formcard
  15830. bitmap id 1data
  15831. 36cc3
  15832. c3c3cc
  15833. DuAU@
  15834. EUMU@
  15835. <N}g=
  15836. PuU@\
  15837. =i@j!P@
  15838. FINFO
  15839. Mastiff/Bulldog                  Bulldog, Boxer, Mastiff, Great Dane
  15840. Spitz/Nordic                       Siberian Husky, Alaskan Malamute
  15841. Terrier                                 Airedale Terrier, Fox Terrier, Cairn Terrier
  15842. Scent Hound                     Beagle, Basset Hound, Bloodhound
  15843. Setter/Retriever/Pointer   Irish Setter, Golden Retriever, Pointer
  15844. Toy/Miniature                    Chihuahua, Pug, Japanese Chin
  15845. Spaniel                               Cocker Spaniel, Springer Spaniel
  15846. Herding Dog                      German Shepherd, Collie
  15847. Sighthound                        Afghan Hound, Borzoi, Saluki
  15848. Mt. Dog/Stock Guard       Great Pyrennes, St. Bernard
  15849. Poodle/Bichon                  Poodle, Bichon FriseADDD
  15850. Some Representative Dogs for the Various LooksTAIL
  15851. GINFO
  15852. Questionnaire HelpSCRP
  15853. on openCard
  15854.   show bg button id 4
  15855.   show bg bitmap "Prev Up"
  15856.   show bg button id 1
  15857.   show bg bitmap "Next Up"
  15858.   pass openCard
  15859. end openCard
  15860. bitmap id 1data
  15861. ,'''q
  15862. VE^EU0EFEqEF
  15863. E^EFE^EF
  15864. 9@B@_@
  15865. F77/q
  15866. FFm 7
  15867. %&E^1
  15868. x+F 7
  15869. 0000000
  15870. ^Exa^
  15871. E2S2^
  15872. 7,770
  15873. /^E^^E
  15874. ^E^^iE
  15875. aaJxa
  15876. aaaaaa
  15877. 00007
  15878. 00000
  15879. '000'00
  15880. f%faa
  15881. "M"fff
  15882. 77777
  15883. //lJ6,
  15884. fMf""
  15885. fMMMMMff
  15886. MMMMMMMM
  15887. MM5MMM5MM
  15888. WW^+W
  15889. eM:eM
  15890. M""""
  15891. f""""
  15892. 5"""5
  15893. M"MM"
  15894. &"MefMf"M:Mf
  15895. M!fMfMf"ffMf
  15896. MMLMe":eMM
  15897. "!kef
  15898. L""4"
  15899. &"5"&
  15900. M&""5
  15901. M"555f
  15902. f""""
  15903. f!Mff
  15904. fffMff
  15905. ffMMff
  15906. \J(+\
  15907. XDh(J
  15908. M4""4
  15909. M""""
  15910. fefeMM
  15911. M"M4MM
  15912. "eM:e
  15913. :Me"M
  15914. fMfMf
  15915. M4"""
  15916. M"""5
  15917. efef!
  15918. e:Mf:M
  15919. wDalQ+
  15920. GzlzG}
  15921. l2++d
  15922. f4ffMf
  15923. MM:MM:
  15924. MefMeM
  15925. MLffLM
  15926. MMffM
  15927. fe&fMM
  15928. M4"5"
  15929. "ff"fM
  15930. fMefM!ff"
  15931. oowQ+
  15932. (E2A(W
  15933. G/1EG
  15934. Z>ZGG
  15935. M5"""
  15936. yG!+zt!
  15937. 4*?!4*
  15938. 4!40;
  15939. 4??00
  15940. 4?*66
  15941. 44?*6
  15942. jjjjjj
  15943. jjjjj
  15944. MWIa+/
  15945. 55"5M
  15946. "5f5M
  15947. 5""5"
  15948. 55f55
  15949. 5"55"5f
  15950. t>i1k
  15951. MR"e:"
  15952. +[kmJu
  15953. S(llW
  15954. !`145
  15955. {~~(,
  15956. 3^?+jj
  15957. ++mWB^
  15958. GGum++aa++
  15959. +fMfM
  15960. C6F6^
  15961. FFFFEE^^
  15962. ?;44;
  15963. shape id 2TAIL
  15964. field id 3data
  15965. Click here when you have answered all the questions and want to see a list of the best dogs for you.TAIL
  15966. shape id 4TAIL
  15967. field id 5data
  15968. Click here to return to the main screen without finding a new set of "Top Dogs".TAIL
  15969. shape id 6TAIL
  15970. field id 7data
  15971. Click on any "?" button to see more detailed information about that question.TAIL
  15972. shape id 8TAIL
  15973.     INFO
  15974. field id 9data
  15975. Click here to move to the next screen of the questionnaire.TAIL
  15976. button id 10SCRP
  15977. on mouseUp
  15978.   global myBusy
  15979.   set cursor to myBusy
  15980.   lock screen
  15981.   go card "Comparison Help"
  15982.   unlock screen with visual effect blinds up fast
  15983.   set cursor to Browse
  15984. end mouseUp
  15985. button id 11SCRP
  15986. on mouseUp
  15987.   global myBusy
  15988.   set cursor to myBusy
  15989.   lock screen
  15990.   go card "Help Card"
  15991.   unlock screen with visual effect blinds up fast
  15992.   set cursor to Browse
  15993. end mouseUp
  15994. field id 12data
  15995. This section asks various questions about what you want in a dog, your lifestyle, what activities you will want to do with your dog, etc.  There are five pages; you can use the tabs to answer the questions in any order, or use the "More" button to move through them sequentially.TAIL
  15996. The QuestionnaireTAIL
  15997. HINFO
  15998. Help Backgroundbkgd
  15999.     Next DownEXTI
  16000. ddata
  16001. """Mooo
  16002. """Mooo
  16003. """Mooo
  16004. """Mooo
  16005. """Mooo
  16006. """Mooo
  16007. Next UpEXTI
  16008. ddata
  16009. bbbbb
  16010. bbbbbbb
  16011. bbbbbbbbb
  16012. bbbbb
  16013. xxxbbbb
  16014. bbbbbbb
  16015. SSff55
  16016. NextSCRP
  16017. on mouseUp
  16018.   global myBusy
  16019.   show bg bitmap "Next Up"
  16020.   hide bg bitmap "Next Down"
  16021.   set cursor to myBusy
  16022.   lock screen
  16023.   go next card
  16024.   unlock screen with visual effect blinds down fast
  16025.   set cursor to Browse
  16026. end mouseUp
  16027. on mouseDown
  16028.   show bg bitmap "Next Down"
  16029.   hide bg bitmap "Next Up"
  16030.   repeat until the mouse is up
  16031.     if the mouseloc is within the rectangle of me then
  16032.       show bg bitmap "Next Down"
  16033.       hide bg bitmap "Next Up"
  16034.     else
  16035.       show bg bitmap "Next Up"
  16036.       hide bg bitmap "Next Down"
  16037.     end if
  16038.   end repeat
  16039. end mouseDown
  16040. TTAIL
  16041. Prev UpEXTI
  16042. ddata
  16043. bbbbbb
  16044. bbbbb
  16045. bbbbb
  16046. bbbbb
  16047. bbbbb
  16048. bbbbb
  16049. //000
  16050. 50J45
  16051. N//*a
  16052. bbybbby
  16053. SSfz05
  16054.     Prev DownEXTI
  16055. ddata
  16056. oooM"""
  16057. oooM"""
  16058. //000
  16059. MMMMMMM
  16060. MMMMMMMMMMM"""
  16061. N//*a
  16062. oooM"""
  16063. <<<<<
  16064. PrevSCRP
  16065. on mouseUp
  16066.   global myBusy
  16067.   show bg bitmap "Prev Up"
  16068.   hide bg bitmap "Prev Down"
  16069.   set cursor to myBusy
  16070.   lock screen
  16071.   go prev card
  16072.   unlock screen with visual effect blinds up fast
  16073.   set cursor to Browse
  16074. end mouseUp
  16075. on mouseDown
  16076.   show bg bitmap "Prev Down"
  16077.   hide bg bitmap "Prev Up"
  16078.   repeat until the mouse is up
  16079.     if the mouseloc is within the rectangle of me then
  16080.       show bg bitmap "Prev Down"
  16081.       hide bg bitmap "Prev Up"
  16082.     else
  16083.       show bg bitmap "Prev Up"
  16084.       hide bg bitmap "Prev Down"
  16085.     end if
  16086.   end repeat
  16087. end mouseDown
  16088. TTAIL
  16089. OK DownEXTI
  16090. ddata
  16091. """Mooo
  16092. [ZWWW
  16093. """Mooo
  16094. WO555
  16095. ZZZFW
  16096. """Mooo
  16097. WGGGXWP
  16098. HHKKT
  16099. H5555
  16100. HHH*54
  16101. OK UpEXTI
  16102. ddata
  16103. bbbbbbb
  16104. [ZWWW
  16105. WO555
  16106. ZZZFW
  16107. WGGGXWP
  16108. HHKKT
  16109. H5555
  16110. HHH*54
  16111.     INFO
  16112. Return to MainSCRP
  16113. on mouseUp
  16114.   global readOnly, myBusy
  16115.   show bg bitmap "OK Up"
  16116.   hide bg bitmap "OK Down"
  16117.   set cursor to myBusy
  16118.   lock screen
  16119.   pop card
  16120.   if readOnly and the short name of this background is "The Main Background" then 
  16121.     send restoreMode to this background
  16122.   end if
  16123.   unlock screen with visual effect wipe up in 30 ticks
  16124.   set cursor to Browse
  16125. end mouseUp
  16126. on mouseDown
  16127.   show bg bitmap "OK Down"
  16128.   hide bg bitmap "OK Up"
  16129.   repeat until the mouse is up
  16130.     if the mouseloc is within the rectangle of me then
  16131.       show bg bitmap "OK Down"
  16132.       hide bg bitmap "OK Up"
  16133.     else
  16134.       show bg bitmap "OK Up"
  16135.       hide bg bitmap "OK Down"
  16136.     end if
  16137.   end repeat
  16138. end mouseDown
  16139. TTAIL
  16140. field id 8EXTI
  16141. TTAIL
  16142. bTAIL
  16143. JINFO
  16144. Comparison HelpSCRP
  16145. on openCard
  16146.   show bg button id 4
  16147.   show bg bitmap "Prev Up"
  16148.   show bg button id 1
  16149.   show bg bitmap "Next Up"
  16150.   pass openCard
  16151. end openCard
  16152. bitmap id 1data
  16153. /)8>8
  16154. /uxD/
  16155. /uxD/
  16156. o>)2o
  16157. Ja2aaa
  16158. xxxxxxxxx
  16159. 22J++JJ2
  16160. aJ++Ja++
  16161. aa+++J+
  16162. ++++++
  16163. 11111
  16164. jjjjjjjj
  16165. oooso
  16166. jjjjjjj
  16167. /jjjjjj
  16168. jjjjjjjjjj
  16169. xooxxooxo
  16170. xxxxx
  16171. >^^^J11o^mxmo^^]/
  16172. +GxF^FJFoF
  16173. >>)1&)^(
  16174. ^11F(
  16175. W7D{W
  16176. tttqt
  16177. i[GrB#
  16178. JJooomSm^DDoE
  16179. &?^))))
  16180. Tj~jUj
  16181.     j/jj
  16182. j/jjj
  16183. l>/y'+|y
  16184. ydxjB
  16185. ///7/
  16186. /77//7/7
  16187. 66/R(
  16188. Z*"""nmS
  16189. Z""qy
  16190. jojjo
  16191. yx|P+x(
  16192. S||x(x
  16193. )xx#-
  16194. l^%.4
  16195. xU2gC
  16196. 22^u]
  16197. >+(o?m
  16198. J2o221
  16199. Dlx^%^^l
  16200. Dlx^D^ol+
  16201. x#;?C
  16202. QyxU;G#
  16203. f1aHubzb
  16204. HHH0H0
  16205. ---['
  16206.     %::()
  16207. ;TC#xxo
  16208. z]bab
  16209. buIua
  16210. """"""
  16211. >+xqx
  16212. )%DDDDD
  16213. qf8fq
  16214. b0u1H
  16215. za0"0
  16216. [Ci#)
  16217. ;Cf[jCC
  16218. H1zbzbzu
  16219. bIbbI
  16220. 0H0HHHH\az
  16221. :k/fI
  16222. rX@WP
  16223. R=,*-C?.bt]
  16224. 2t]22
  16225. T[X,bl]2
  16226. 5"""""0bbb
  16227. ^>tw>7
  16228. a-|>J
  16229. R[CXVlt]
  16230. f1b]1v
  16231. a0a11vII
  16232. HIbzIH1
  16233. f"IbI
  16234. H51IHbbbabbHbzH
  16235. a1HzDbHaHb0
  16236. k}Px)
  16237. |y=e*
  16238. >x.E2G
  16239. ;C:;R
  16240. ^ijZZ
  16241. .RKx)
  16242. "-k&1{ul]
  16243. Ov2*x|3R\.3xv
  16244. XUi-)
  16245. VqC;#v\
  16246. n%:Vi:
  16247. 0zIHz1aIaIa
  16248. a0H00"H
  16249. Px|y)"?:
  16250. j:C;#?C
  16251. ")"h:F
  16252. CjyCK
  16253. b1b1a1abv1IH1H
  16254. MaHba
  16255. IDHIb]zbbHH1
  16256. zHaz0az00"
  16257. HaHaH
  16258. 0zIHa
  16259. zba0bHb
  16260. 0IaHb
  16261. 0aa0HaHa0HHH0zzaH\auzHb
  16262. N5Ha0
  16263. zzIzbbI\1zb
  16264. abbbbHa0za0H0bbabHb0a0
  16265. x:ZRUigjU[
  16266. #|Cji;#n[j;|
  16267. Q[rqj?m
  16268. yUj;C2RCU
  16269. m)#SCg@
  16270. -DN.O
  16271. 2B6T8wPbP
  16272. aaaxaa
  16273. x22JJ
  16274. ooooo
  16275. jpjpj
  16276. a)):)):)):)):)):)):)
  16277. )):)):)):)):))
  16278. 1):):)):):
  16279. :):)):)):
  16280. 1)):)):)
  16281. :)):))):
  16282. :)):)):
  16283. :):):):+:
  16284. :)):))
  16285. 1):)):)):)):)):)):)):)):
  16286. 1)):)):)):)):)):)):)):)))
  16287. w1pqm
  16288. ^QI2x\&^
  16289. ;jo/@p
  16290. &kDk&^v
  16291. A&N;2o2;w2
  16292. mJaq/
  16293. J+WB2
  16294. 7SxaI2
  16295. /82^/+
  16296. joojo
  16297. J+++a+
  16298. ++++++++
  16299. ++++++
  16300. jljjj
  16301. C_oooo
  16302. B(m(mB
  16303. m(B(B((m
  16304. mm(B(B(B(m
  16305. m(B(((
  16306. mmm((3
  16307. mm((mm(B(B
  16308. B((m(((mm((mm
  16309. ooqoD
  16310. x>x>x>1)
  16311. Y7njl
  16312. ^o?]&
  16313. oojooooj
  16314. )Jm1)
  16315. ooojo
  16316. x&>B?(
  16317. ltJ/jE
  16318. -Y+sp
  16319. ooooo
  16320. Eo^/j
  16321. PM]lD
  16322. poooo
  16323. 1%%]E
  16324. F)^(?(
  16325. jjjjj
  16326. ooooo
  16327. ooooo
  16328. >GGGF
  16329. o@@@/
  16330. 3HY1@
  16331. oJo%^G
  16332. E,E/oj
  16333. B    nyJ
  16334. o@oooo
  16335. >?XSx
  16336. jjj/j
  16337. &{WuSaD
  16338. ixVZ#
  16339. %Jjjj 
  16340. oooooo
  16341. xxxxx
  16342. xx^oxx^ox
  16343. field id 3data
  16344. In addition to the description and pictures, this screen gives you the chance to see a concise comparison of your questionnaire answers with the corresponding attributes of various breeds.TAIL
  16345. shape id 4TAIL
  16346. field id 5data
  16347. This column shows your answers to the questionnaire.TAIL
  16348. field id 7data
  16349. When you click on a breed, its attributes are shown in the next available column of the table.  When all four columns are filled, the next breed goes into the first column again.TAIL
  16350. shape id 8TAIL
  16351.     INFO
  16352. shape id 9TAIL
  16353. shape id 10TAIL
  16354. field id 11data
  16355. These four columns show the attributes of the breeds you select.TAIL
  16356. shape id 12TAIL
  16357. field id 13data
  16358. You can print the comparison table, too.TAIL
  16359. field id 14data
  16360. After you have gone through the questionnaire, this will contain a sorted list of the best dogs for you.  The scores on the right are always out of a possible 100; the higher the score, the better match the dog is for you.TAIL
  16361. shape id 15TAIL
  16362. button id 16SCRP
  16363. on mouseUp
  16364.   global myBusy
  16365.   set cursor to myBusy
  16366.   lock screen
  16367.   go card "Questionnaire Help"
  16368.   unlock screen with visual effect blinds down fast
  16369.   set cursor to Browse
  16370. end mouseUp
  16371. shape id 2TAIL
  16372. field id 17data
  16373. Click on the small "?" button to see what the letters for the "Looks" attribute mean.TAIL
  16374. shape id 18TAIL
  16375. shape id 19TAIL
  16376. field id 20data
  16377. Click here to go to the questionnaire and get your personalized list of the best dogs for you.TAIL
  16378. shape id 21TAIL
  16379. shape id 6TAIL
  16380. Top DogsTAIL
  16381. KINFO
  16382. Movie Bar HelpSCRP
  16383. on openCard
  16384.   show bg button id 4
  16385.   show bg bitmap "Prev Up"
  16386.   hide bg button id 1
  16387.   hide bg bitmap "Next Up"
  16388.   pass openCard
  16389. end openCard
  16390. bitmap id 7data
  16391. %D""%
  16392.     ////
  16393. <Qou~7
  16394. BfBB^
  16395. /mBmm
  16396. fIBmf
  16397. fIfmf
  16398. /11qq11
  16399. fmImq/
  16400. &)1111
  16401. /fmfm
  16402. mm~Q~mQ~Q~mQ~Q~mmQ~mQm~QmQm~
  16403. QQm~Q~mQ~mm~mQQ~mmQm~Q~mmQ~mQm~QmQ~mmQ~mmQ~mmQ~mQm~Q~mQ~Q~Q~mQm~QmQ~mmQ~mQm~Qm~Q~mQ~mmQ~mQQ~mmQ~mmQ~mQm~Qm~Q~mQ~mQm~QmQ~mmQ~mQm~QmQ~Q~mmQ~mQQ~mmQm~Q~mQQ~mQm~QmQ~mQ~m~Qm~mQ~mmQ~Q~mmQ~mmQ~mQm~QmQ~mQmQ
  16404. <<<<<<<
  16405. <<<<<<<<
  16406. <<<<<<<
  16407. <<<<<<<<
  16408. 11&&oo
  16409. o&^&1
  16410. field id 2data
  16411. At the bottom of every movie and slide show is a control bar like the one below (shown larger than actual size).TAIL
  16412. field id 3data
  16413. Click here to start the movie (or slide show) playing.
  16414. Click again to stop it.TAIL
  16415. shape id 4TAIL
  16416. field id 5data
  16417. Click to back up the movie one frame.TAIL
  16418. shape id 6TAIL
  16419. shape id 8TAIL
  16420.     INFO
  16421. field id 9data
  16422. To change the volume, click and hold here, then slide the indicator to the desired level.TAIL
  16423. shape id 10TAIL
  16424. field id 11data
  16425. This slider moves while the movie is playing giving you an indication of how much of  the movie remains.
  16426. You can also drag the slider to rapidly move to an approximate location within the movie.TAIL
  16427. shape id 12TAIL
  16428. field id 13data
  16429. Click to advance the movie one frame.TAIL
  16430. Movie and Slide Show ControlsTAIL
  16431. MINFO
  16432. fTAIL
  16433. PINFO
  16434. Top Dogs AlertSCRP
  16435. on openCard
  16436.   set cursor to Browse
  16437. end openCard
  16438. OK Downdata
  16439. """Mooo
  16440. [ZWWW
  16441. """Mooo
  16442. WO555
  16443. ZZZFW
  16444. """Mooo
  16445. WGGGXWP
  16446. HHKKT
  16447. H5555
  16448. HHH*54
  16449. OK Updata
  16450. bbbbbbb
  16451. [ZWWW
  16452. WO555
  16453. ZZZFW
  16454. WGGGXWP
  16455. HHKKT
  16456. H5555
  16457. HHH*54
  16458. Return to MainSCRP
  16459. on mouseUp
  16460.   show card bitmap "OK Up"
  16461.   hide card bitmap "OK Down"
  16462.   dismiss
  16463. end mouseUp
  16464. on mouseDown
  16465.   show card bitmap "OK Down"
  16466.   hide card bitmap "OK Up"
  16467.   repeat until the mouse is up
  16468.     if the mouseloc is within the rectangle of me then
  16469.       show card bitmap "OK Down"
  16470.       hide card bitmap "OK Up"
  16471.     else
  16472.       show card bitmap "OK Up"
  16473.       hide card bitmap "OK Down"
  16474.     end if
  16475.   end repeat
  16476. end mouseDown
  16477. field id 1data
  16478. This page will show you a ranked list of the best dogs for you based on your answers to a short questionnaire.  What you will see now is only an example.
  16479. To get your own personalized list of the best breeds for you, click on the "Find Top Dogs" button at the bottom of the screen and then answer the questions.
  16480. ooooo
  16481. oo\@\@@
  16482. oooos
  16483. jojoj
  16484. o\@@.\
  16485. 7777.\o
  16486. &rIjo
  16487. :- -::
  16488. v33sjo@@
  16489. :77:7
  16490. .2@..@
  16491. @@@\3s...
  16492. v\\\\\
  16493. 0>..0
  16494. =        55
  16495. 14645=>
  16496. jojsj
  16497. #m/oo
  16498. ,47 7666
  16499. >>375
  16500. $X$B@
  16501. '^Ej/
  16502. osooo
  16503. oppmjo
  16504. b@'"!
  16505. 7>!,C
  16506. j#&)83#qqi
  16507. //j/jEB_
  16508. .>..7.=1
  16509. oo\\loE
  16510. jsljj
  16511. @oooo
  16512.  ,7X 
  16513. %C^XCX
  16514.  7777
  16515. ^F>%X
  16516. ojjpo
  16517. vq/rv
  16518. ==- >"2>
  16519. jsjjlmjo
  16520. E/F^j
  16521. 4: 3:9'$
  16522. ojjj3oo\
  16523. oooos
  16524. @CEEjj
  16525. oolqq
  16526. :<7777
  16527.         3    5
  16528. o/mls
  16529. soooo
  16530. jjjpmm
  16531. oooso
  16532. oooos
  16533. \joss
  16534. oj\3\\
  16535. oj@@@@\\\
  16536. @\@\@
  16537. 67<60
  16538. \B:4 
  16539. jpjEE^F
  16540. ^F^FF
  16541. oqqlj
  16542. C^@//
  16543. F^^^^
  16544. o,@@j
  16545. jjojjo
  16546. oF@@jo
  16547. ^CC$^
  16548. ooo/lj
  16549. _^^Cj
  16550. =8>5:
  16551. @Eq/jC
  16552. oooooo
  16553. lll/pooo
  16554. CE@_@
  16555. o/ooo
  16556. \o\3o3o
  16557. ooooo/@
  16558. ?46?76
  16559. E;?047
  16560. o\oj\
  16561. jjjojjj
  16562. C@@_C
  16563. oll@Fql
  16564. q/E^@
  16565. 44?40
  16566. ^^^CC
  16567. ;?776
  16568. ojjoo
  16569. ^^A@_
  16570. /@@o/
  16571. qlljj
  16572. pojoj
  16573. jloo/
  16574. qnqin
  16575. ooooo
  16576. oplqiin
  16577. ojooj
  16578. F!F^F
  16579. llplli
  16580. ospll
  16581. jojoj
  16582. so\\o\
  16583. oo3oo
  16584. j3\o\
  16585. s\ojs\o
  16586. 6o\ojooo
  16587. 3jo@qpo/qp
  16588. \ojoj
  16589. )\\j\
  16590. CFFa^
  16591. oojo3
  16592. CE@^CC@@
  16593. jjojojo
  16594. ojojoj
  16595. *o@@oo
  16596. jjojo\
  16597. j33jj
  16598. $jjojoojo
  16599. o\\\\
  16600. oooooo
  16601. ojoojo
  16602. \\@\\j3
  16603. \j\j\ojo
  16604. \@\v3
  16605. 3jojoojj
  16606. jo\@@v\
  16607. ...@]]
  16608. :0>.>
  16609. oj\\@\
  16610. \\\\\
  16611. @.@3oo
  16612. ojojooj
  16613. \joj\
  16614. 3\oj3
  16615. @..@.
  16616. @o6o@\\
  16617. o\\\@
  16618. jojojo
  16619. o3\Yjo
  16620. 3o3\\
  16621. @ojso\
  16622. ojo\\
  16623. \\sov\
  16624. ,>0.@@
  16625. 7746?
  16626. @^@C@@@/
  16627. ojooo
  16628. @@@@E
  16629. ooooo
  16630. ooojj@
  16631. @@@jojo
  16632. ooooo
  16633. 0*3>>.0
  16634. .....
  16635. jooslm
  16636. .'.>-
  16637. ojooo
  16638. > 00.s
  16639. @Yooos
  16640. ...@o
  16641. n....
  16642. joooj
  16643. @oooo
  16644. joo\\
  16645. l^...@
  16646. \\2\\\
  16647. oooop
  16648. jssss
  16649. oonoo
  16650. \\@@o
  16651. ""=0>>>2ss
  16652. .22...2]
  16653. joooo
  16654. lpooo
  16655. oojooo
  16656. ...@.
  16657. oolqlo
  16658. \joos
  16659. oooo@
  16660. @loo@
  16661. lwqooqql
  16662. ooooo
  16663. oj@qj
  16664. ojp/o
  16665. @@@C@
  16666. ooojpj
  16667. ooooooo
  16668. ooojo
  16669. ooljo
  16670. @@@@@
  16671. \oojo
  16672. \\\\o
  16673. poooo
  16674. vjsoj
  16675. oooooo
  16676. @BE\o
  16677. @@//oosj
  16678. js@\@
  16679. Clqqlo
  16680. YsjsB
  16681. ojoss
  16682. ojjpoj
  16683. ppoop
  16684. E]]@C
  16685. @^@@@@/
  16686. oop/o
  16687. @mm\@
  16688. E^^]Cq
  16689. s/mm@
  16690. osooo
  16691. ooooo
  16692. FB' F@i!
  16693.  *< *
  16694. @ooojo
  16695. j/_@bCf
  16696. o3oY\
  16697. oojoo
  16698. ooo/o
  16699. @3jYj
  16700. ompjo
  16701. @ooop
  16702. /jjj/j
  16703. \soo\
  16704. m2r! 0.""
  16705. jE@Ej
  16706. jE^\j
  16707. @@ooo
  16708. o/ooo/oo
  16709. soojo
  16710. ooojj
  16711. Y\s\\o
  16712. 3joo3
  16713. ooooo
  16714. \o3ss
  16715. jjjjj/j@
  16716. pjllj
  16717. \E\Ej
  16718. oojooj
  16719. @@ooo
  16720. @jplo
  16721. ooops
  16722. ooooo/qq
  16723. @CpoC
  16724. Cqooo
  16725. ,o@@Co
  16726. ooplps
  16727. /joEj\
  16728. jlI.EC:-\
  16729. j/o@o
  16730. ojojoo
  16731. ^@o/q
  16732. @\@C]
  16733. QINFO
  16734. Match List Printcard
  16735. Match Listdata
  16736. MOCELL10
  16737. Petit Basset Griffon Vendeen
  16738. West Highland White Terrier
  16739. American Eskimo
  16740. amereski
  16741. Canaan Dog (S)
  16742. canadog_
  16743. Samoyed
  16744. samoyed_
  16745. Pomeranian
  16746. pomerani
  16747. Finnish Spitz (S)
  16748. finnspit
  16749. Keeshond
  16750. keeshond
  16751. Shiba  (S)
  16752. shiba___
  16753. Chow Chow
  16754. chowchow
  16755. Shetland Sheepdog
  16756. shetshee
  16757. Miniature Poodle
  16758. minipood
  16759. Australian Terrier
  16760. austterr
  16761. Australian Shepherd (S)
  16762. austshep
  16763. Toy Poodle
  16764. toy_pood
  16765. Portugese Water Dog
  16766. porwatdo
  16767. puli____
  16768. Norwegian Elkhound
  16769. norwelkh
  16770. Cardigan Welsh Corgi
  16771. carwelco
  16772. Pembroke Welsh Corgi
  16773. pemwelco
  16774. Siberian Husky (S)
  16775. sibehusk
  16776. Schipperke
  16777. schipper
  16778. Miniature Schnauzer
  16779. minischn
  16780. Clumber Spaniel
  16781. clumspan
  16782. Chinese Shar-Pei (S)
  16783. chishape
  16784. Welsh Springer Spaniel
  16785. welsprsp
  16786. Whippet (S)
  16787. whippet_
  16788. Norfolk Terrier
  16789. norfterr
  16790. Cairn Terrier
  16791. cairterr
  16792. Norwich Terrier
  16793. norwterr
  16794. Chinese Crested
  16795. chincres
  16796. Welsh Terrier
  16797. welsterr
  16798. Irish Terrier
  16799. iristerr
  16800. Papillon
  16801. papillon
  16802. Scottish Terrier
  16803. scotterr
  16804. Sealyham Terrier
  16805. sealterr
  16806. Border Collie (S)
  16807. bordcoll
  16808. English Toy Spaniel
  16809. engtoysp
  16810. Brussels Griffon
  16811. brusgrif
  16812. Maltese
  16813. maltese_
  16814. Miniature Pinscher
  16815. minipins
  16816. Alaskan Malamute (S)
  16817. alasmala
  16818. Bearded Collie (S)
  16819. bearcoll
  16820. Irish Water Spaniel
  16821. iriwatsp
  16822. American Water Spaniel
  16823. amewatsp
  16824. Cesky Terrier
  16825. ceskterr
  16826. French Bulldog
  16827. frenbull
  16828. Akita 
  16829. akita___
  16830. Cocker Spaniel
  16831. cockspan
  16832. pebagrve
  16833. Dachshund (S)
  16834. dachshun
  16835. English Bulldog
  16836. englbull
  16837. Standard Poodle
  16838. stanpood
  16839. Japanese Chin
  16840. japachin
  16841. Basenji
  16842. basenji_
  16843. Lakeland Terrier
  16844. laketerr
  16845. wehiwhte
  16846. Bichon Frise
  16847. bichfris
  16848. Standard Schnauzer
  16849. stanschn
  16850. Australian Cattle Dog
  16851. auscatdo
  16852. Kerry Blue Terrier
  16853. kerblute
  16854. Italian Greyhound
  16855. italgrey
  16856. field id 2data
  16857. Scores are out of a possible 100.TAIL
  16858. 8INFO
  16859. The Main BackgroundSCRP
  16860. --------------------------------------
  16861. on openBackground
  16862.   global currentState
  16863.   if currentState is not empty then
  16864.     send maybeShowYourself to bg movie "Little Movie"
  16865.     send maybeShowYourself to bg movie "Slide Show"
  16866.   end if
  16867.   pass openBackground
  16868. end openBackground
  16869. --------------------------------------
  16870. on openCard
  16871.   global readOnly, currentMode
  16872.   -- If we're a read-only stack, check to make sure the current mode
  16873.   -- matches the setting of the mode buttons (by seeing if the "up" buttons
  16874.   -- are visible).  If not, fix it.
  16875.   if readOnly then
  16876.     if currentMode = 1 then
  16877.       if the visible of bg bitmap id 23 is true then  -- bitmap id 23 is "text up"
  16878.         send restoreMode to me
  16879.       end if
  16880.     else if currentMode = 2 then
  16881.       if the visible of bg bitmap id 24 is true then
  16882.         send restoreMode to me
  16883.       end if
  16884.     else if currentMode = 3 and the short name of this card is "Main Card-2" then
  16885.       if the visible of card bitmap id 7 is true then
  16886.         send restoreMode to me
  16887.       end if
  16888.     end if
  16889.     set cursor to Browse
  16890.   end if
  16891.   -- RMAK0597: Kludge for Windows OMO to restore
  16892.   -- RMAK0597: a movie's control bar.
  16893.   if the platform is "Windows" then
  16894.     send maybeShowYourself to bg movie "Little Movie"
  16895.     send maybeShowYourself to bg movie "Slide Show"
  16896.   end if
  16897.   pass openCard
  16898. end openCard
  16899. --------------------------------------
  16900. on closeCard
  16901.   send StopYourself to bg movie "Little Movie"
  16902.   send StopYourself to bg movie "Slide Show"
  16903.   pass closeCard
  16904. end closeCard
  16905. --------------------------------------
  16906. on stateChange newState
  16907.   -- Called when the user moves from one card to another within the main set.
  16908.   -- newState=1 for the Dog List
  16909.   -- newState=2 for the Ranking List
  16910.   -- newState=3 for the Article List
  16911.   -- newState=4 for the Index
  16912.   -- newState=5 for the Book List
  16913.   -- newState=6 for the Credits
  16914.   global currentState, currentMode, userBark
  16915.   -- RMAK0597: Kludge for Windows OMO to take down
  16916.   -- RMAK0597: a movie's control bar.
  16917.   if the platform is "Windows" then
  16918.     send kludgeHide to bg movie "Little Movie"
  16919.     send kludgeHIde to bg movie "Slide Show"
  16920.   end if
  16921.   lock screen
  16922.   -- These are now done from closeCard
  16923.   --send StopYourself to bg movie "Little Movie"
  16924.   --send StopYourself to bg movie "Slide Show"
  16925.   -- Mode 3 (the comparison table) is only valid on the one card, so if we're in that
  16926.   -- mode and we're leaving, we need to switch to text mode first.
  16927.   if currentMode=3 then
  16928.     send unhiliteYourself to card button id 2    -- "Comparisons"
  16929.     send hiliteYourself to bg button id 8           -- "Text"
  16930.     put 1 into currentMode    --Text mode
  16931.   end if
  16932.   if currentState=5 then
  16933.     -- We're coming out of state 5, so we need to reset the currentMode
  16934.     if the myhilite of bg button id 8 is true then    -- "Text"
  16935.       put 1 into currentMode
  16936.     else
  16937.       put 2 into currentMode
  16938.       hide bg field "Dog Info"    -- JSP0597: fix for Ron's bug
  16939.     end if
  16940.   end if
  16941.   go card "Main Card-" & newState
  16942.   put newState into currentState
  16943.   -- Some insurance that the datasheet isn't visible.
  16944.   if newState=2 then
  16945.     hide card datasheet "Comparison Table"
  16946.     hide card button id 15
  16947.     hide card field id 16
  16948.   end if
  16949.   put empty into bg field "Dog Caption"
  16950.   put empty into bg movie "Little Movie"
  16951.   put empty into bg bitmap "Little Picture"
  16952.   put empty into bg field "Dog Info"
  16953.   put empty into bg movie "Slide Show"
  16954.   put empty into bg bitmap "Big Picture"
  16955.   if newState=5 then
  16956.     send modeChange && 5 to me
  16957.     send showYourself to bg field "Dog Info"
  16958.   else
  16959.     send showStuff to me
  16960.   end if
  16961.   unlock screen with visual effect blinds up in 40 ticks
  16962.   -- RMAK0597: Kludge for Windows OMO to restore
  16963.   -- RMAK0597: a movie's control bar.
  16964.   if the platform is "Windows" then
  16965.     send maybeShowYourself to bg movie "Little Movie"
  16966.     send maybeShowYourself to bg movie "Slide Show"
  16967.   end if
  16968.   if newState=2 then
  16969.     if userBark is empty then    -- The user hasn't yet been to the questionnaire.
  16970.       popup card id 102 as dialog
  16971.       put "?" into userBark      -- So that we don't do this again.
  16972.     end if
  16973.   end if
  16974.   set cursor to Browse
  16975. end stateChange
  16976. --------------------------------------
  16977. on modeChange newMode
  16978.   -- Called when the user changes what's displayed on the current card.
  16979.   -- The book list is a special case since there's only one mode accessible
  16980.   -- on that card.
  16981.   -- newMode=1 for text mode
  16982.   -- newMode=2 for picture mode
  16983.   -- newMode=3 for comparison table mode
  16984.   -- newMode=5 for the Book List
  16985.   global currentMode
  16986.   -- RMAK0597: lock screen   -- moved to below for Windows kludge
  16987.   if currentMode=2 then      -- We're coming from picture mode.
  16988.     -- RMAK0597: Kludge for Windows OMO to take down
  16989.     -- RMAK0597: a movie's control bar.
  16990.     if the platform is "Windows" then
  16991.       send kludgeHIde to bg movie "Slide Show"
  16992.     end if
  16993.     lock screen  -- RMAK0597: moved from above for Windows kludge
  16994.     hide bg bitmap "Big Picture"
  16995.     send hideYourself to bg movie "Slide Show"
  16996.     hide bg field "Dog Caption"
  16997.   else
  16998.     -- RMAK0597: Kludge for Windows OMO to take down
  16999.     -- RMAK0597: a movie's control bar.
  17000.     if the platform is "Windows" then
  17001.       send kludgeHide to bg movie "Little Movie"
  17002.     end if
  17003.     lock screen  -- RMAK0597: moved from above for Windows kludge
  17004.     hide bg bitmap "Little Picture"
  17005.     send hideYourself to bg movie "Little Movie"
  17006.     hide bg field "Dog Info"
  17007.     if currentMode=3 then    -- We're coming from comparison mode.
  17008.       if the short name of this card is "Main Card-2" then    -- Paranoid check
  17009.         hide card datasheet "Comparison Table"
  17010.         hide card button id 15
  17011.         hide card field id 16
  17012.       end if
  17013.     end if
  17014.   end if
  17015.   put newMode into currentMode
  17016.   if newMode is not 5 then send showStuff to me
  17017.   if the platform is "Macintosh" then
  17018.     unlock screen with visual effect pixelDissolve in 60 ticks
  17019.   else
  17020.     unlock screen with visual effect blinds up in 40 ticks
  17021.     -- RMAK0597: Kludge for Windows OMO to restore
  17022.     -- RMAK0597: a movie's control bar.
  17023.     send maybeShowYourself to bg movie "Little Movie"
  17024.     send maybeShowYourself to bg movie "Slide Show"
  17025.   end if
  17026.   set cursor to Browse
  17027. end modeChange
  17028. --------------------------------------
  17029. on restoreMode
  17030.   -- Called by openCard only when we're a read-only stack.
  17031.   -- Makes sure that what's displayed matches the mode we're in.
  17032.   global currentMode
  17033.   put empty into bg bitmap "Little Picture"
  17034.   put empty into bg movie "Little Movie"
  17035.   put empty into bg field "Dog Caption"
  17036.   put empty into bg bitmap "Big Picture"
  17037.   put empty into bg movie "Slide Show"
  17038.   put empty into bg field "Dog Info"
  17039.   if currentMode = 1 then
  17040.     send hiliteYourself to bg button id 8
  17041.     send unHiliteYourself to bg button id 10
  17042.   end if
  17043.   if currentMode = 2 then
  17044.     send hiliteYourself to bg button id 10
  17045.     send unHiliteYourself to bg button id 8
  17046.     send hideYourself to bg movie "Little Movie"
  17047.     hide bg bitmap "Little Picture"
  17048.     hide bg field "Dog Info"
  17049.   else      -- Mode is 1 or 3
  17050.     hide bg field "Dog Caption"
  17051.     hide bg bitmap "Big Picture"
  17052.     send hideYourself to bg movie "Slide Show"
  17053.   end if
  17054.   if the short name of this card is "Main Card-2" then
  17055.     if currentMode = 3 then
  17056.       send hiliteYourself to card button id 2
  17057.       send unHiliteYourself to bg button id 8
  17058.       send unHiliteYourself to bg button id 10
  17059.       hide bg field "Dog Info"
  17060.     else
  17061.       send unHiliteYourself to card button id 2
  17062.       hide card datasheet "Comparison Table"
  17063.       hide card button id 15
  17064.       hide card field id 16
  17065.     end if
  17066.   end if
  17067.   send showStuff to me
  17068. end restoreMode
  17069. --------------------------------------
  17070. on showNewDog
  17071.   -- Called by the various picklists when the user selects a new item.
  17072.   global myBusy
  17073.   set cursor to myBusy
  17074.   -- RMAK0597: Kludge for Windows OMO to take down
  17075.   -- RMAK0597: a movie's control bar.
  17076.   if the platform is "Windows" then
  17077.     send kludgeHide to bg movie "Little Movie"
  17078.     send kludgeHIde to bg movie "Slide Show"
  17079.   end if
  17080.   lock screen
  17081.   put empty into bg bitmap "Little Picture"
  17082.   put empty into bg movie "Little Movie"
  17083.   put empty into bg field "Dog Caption"
  17084.   put empty into bg bitmap "Big Picture"
  17085.   put empty into bg movie "Slide Show"
  17086.   put empty into bg field "Dog Info"
  17087.   send showStuff to me
  17088.   if the platform is "Macintosh" then
  17089.     unlock screen with visual effect pixelDissolve in 40 ticks
  17090.   else
  17091.     unlock screen with visual effect blinds up in 40 ticks
  17092.     -- RMAK0597: Kludge for Windows OMO to restore
  17093.     -- RMAK0597: a movie's control bar.
  17094.     send maybeShowYourself to bg movie "Little Movie"
  17095.     send maybeShowYourself to bg movie "Slide Show"
  17096.   end if
  17097.   set cursor to Browse
  17098. end showNewDog
  17099. --------------------------------------
  17100. on showStuff
  17101.   -- Called by statechage, modeChange, restoreMode, showNewDog.
  17102.   -- Makes sure all the buttons are displayed correctly, and that
  17103.   -- the correct text fields, pictures, movies, etc. are showing.
  17104.   global currentMode, littleGraphic, bigGraphic, curDirPrefix, dogDirPrefix, curFileDog
  17105.   -- Label the text button appropriately.
  17106.   if curDirPrefix = dogDirPrefix then
  17107.     set name of bg button id 8 to "Description"  -- & Small Picture"
  17108.   else
  17109.     if littleGraphic = "V" then
  17110.       set name of bg button id 8 to "Text & Movie"
  17111.     else
  17112.       set name of bg button id 8 to "Text"  -- & Small Picture"
  17113.     end if
  17114.   end if
  17115.   -- Label the picture button appropriately.
  17116.   enable bg button id 10    -- Just in case it got itself disabled.
  17117.   if bigGraphic = "P" then
  17118.     set name of bg button id 10 to "Big Picture"
  17119.   else if bigGraphic = "S" then
  17120.     set name of bg button id 10 to "Slide Show"
  17121.   else
  17122.     -- There's no big picture or slide show, so let's make sure we're
  17123.     -- in text mode and then disable the Picture button.
  17124.     send mouseUp to bg button id 8    -- "Text"
  17125.     set name of bg button id 10 to "Big Picture"
  17126.     disable bg button id 10
  17127.   end if
  17128.   if currentMode = 2 then                     -- Picture mode
  17129.     disable bg button id 19    -- "Print"
  17130.     show bg bitmap "Print Greyed"
  17131.     hide bg bitmap "Print Up"
  17132.     send showYourself to bg field "Dog Caption"
  17133.     if bigGraphic = "P" then
  17134.       send hideYourself to bg movie "Slide Show"
  17135.       send showYourself to bg bitmap "Big Picture"
  17136.     else if bigGraphic = "S" then
  17137.       hide bg bitmap "Big Picture"
  17138.       send showYourself to bg movie "Slide Show"
  17139.     end if
  17140.   else                                      -- Text or Comparison mode
  17141.     enable bg  button id 19    -- "Print"
  17142.     hide bg bitmap "Print Greyed"
  17143.     show bg bitmap "Print Up"
  17144.     if currentMode=1 then                  -- Text Mode
  17145.       send showYourself to bg field "Dog Info"
  17146.     else                                   -- Comparison mode
  17147.       send showYourself to card datasheet "Comparison Table"
  17148.     end if
  17149.     if littleGraphic = "V" then
  17150.       hide bg bitmap "Little Picture"
  17151.       send showYourself to bg movie "Little Movie"
  17152.     else if littleGraphic = "L" then
  17153.       send hideYourself to bg movie "Little Movie"
  17154.       send showYourself to bg bitmap "Little Picture"
  17155.     end if
  17156.   end if
  17157.   set the visible of bg button "Puppy Test" to (curFileDog = "puptemte")
  17158.   set the visible of bg bitmap "puptest up" to (curFileDog = "puptemte")
  17159. end showStuff
  17160. --------------------------------------
  17161. on hypertext whatWord
  17162.   global myBusy, rowSavers
  17163.   if whatWord is not in card picklist "Index List" of card "Main Card-4" then
  17164.     beep
  17165.     exit hypertext
  17166.   end if
  17167.   set cursor to myBusy
  17168.   -- Find the line that contains the word.
  17169.   put col 1 of card picklist "Index List" of card "Main Card-4" into theList
  17170.   repeat with wRow=1 to the number of lines in theList
  17171.     if whatWord is in line wRow of theList then
  17172.       exit repeat
  17173.     end if
  17174.   end repeat
  17175.   -- RMAK0597: Kludge for Windows OMO to take down
  17176.   -- RMAK0597: a movie's control bar.
  17177.   if the platform is "Windows" then
  17178.     send kludgeHide to bg movie "Little Movie"
  17179.     send kludgeHIde to bg movie "Slide Show"
  17180.   end if
  17181.   lock screen
  17182.   if the short name of this card is "Main Card-4" then
  17183.     -- Special case when we're already on the index card.
  17184.     unhilite card picklist "Index List"
  17185.     hilite row wRow of card picklist "Index List"
  17186.     send getFileIndex to card picklist "Index List"
  17187.   else
  17188.     put wRow into item 4 of rowSavers
  17189.   end if
  17190.   send stateChange && 4 to this background
  17191.   if wRow > 12 then
  17192.     set the vertical scrollLine of card picklist "Index List" to wRow-2
  17193.   else
  17194.     set the vertical scrollLine of card picklist "Index List" to 1
  17195.   end if
  17196.   unlock screen with visual effect blinds up in 40 ticks
  17197.   -- RMAK0597: Kludge for Windows OMO to restore
  17198.   -- RMAK0597: a movie's control bar.
  17199.   if the platform is "Windows" then
  17200.     send maybeShowYourself to bg movie "Little Movie"
  17201.     send maybeShowYourself to bg movie "Slide Show"
  17202.   end if
  17203.   set cursor to Browse
  17204. end hypertext
  17205. $+BiO
  17206.     Text downEXTI
  17207. ""MMoo
  17208. Picture upEXTI
  17209. Sfff5
  17210. &INFO
  17211. Print UpEXTI
  17212. bbbbbb
  17213. bbbbb
  17214. bbbbb
  17215. bbbbbbbbbb
  17216. bbbbbb
  17217. bbbbbb
  17218. SSff55
  17219. 1TAIL
  17220. !INFO
  17221. Top Dogs UpEXTI
  17222. bbbbbb
  17223. bbbbbbb
  17224. bbbbbb
  17225. bbbbb
  17226. bbbbb
  17227. bbbbb
  17228. bbbbbb
  17229. bbbbbbb
  17230. bbbbbbbbbbbbbbbbb
  17231. bbbbbb
  17232. LL<<<<
  17233. <<<<<<<<
  17234. <<<<<<<<
  17235. <<<L<<<
  17236. bbbbbb
  17237. .a./.
  17238. bbbbbbb
  17239. bbbbbbbb
  17240. Picture downEXTI
  17241. ""MMoo
  17242. Text upEXTI
  17243. Sfff5
  17244. 2INFO
  17245. puptest upEXTI
  17246. bbbbbbb
  17247. bbbbbbb
  17248. bbbbbb
  17249. bbbbb
  17250. bbbbb
  17251. bbbbb
  17252. bbbbb
  17253. bbbb    
  17254. bbbbb
  17255. bbbbbbb
  17256. bbbbbb
  17257. bbbbbb
  17258. HOHaH
  17259. *z..f
  17260. H1**11
  17261. HOHa.
  17262. OL111
  17263. 1}OHOHOHz
  17264. MK5.I
  17265. HOHOHOHO
  17266. 11LKH1
  17267. 111LOHO
  17268. HOHOHO
  17269. }K110
  17270. 1}OHz11
  17271. 1}OHOHa
  17272. }K110
  17273. a.OHO}1
  17274. 11OHa..
  17275. a..HL
  17276. *11**
  17277. SSff55
  17278. 1INFO
  17279. Puppy TestSCRP
  17280. on mouseUp
  17281.   global myBusy
  17282.   show bg bitmap "puptest up"
  17283.   hide bg bitmap "puptest down"
  17284.   set cursor to myBusy
  17285.   if the platform is "Windows" then
  17286.     send kludgeHide to bg movie "Little Movie"
  17287.     send kludgeHIde to bg movie "Slide Show"
  17288.   end if
  17289.   lock screen
  17290.   go card id 45
  17291.   unlock screen with visual effect scroll down in 30 ticks
  17292.   set cursor to Browse
  17293. end mouseUp
  17294. on mouseDown
  17295.   show bg bitmap "puptest down"
  17296.   hide bg bitmap "puptest up"
  17297.   repeat until the mouse is up
  17298.     if the mouseloc is within the rectangle of me then
  17299.       show bg bitmap "puptest down"
  17300.       hide bg bitmap "puptest up"
  17301.     else
  17302.       show bg bitmap "puptest up"
  17303.       hide bg bitmap "puptest down"
  17304.     end if
  17305.   end repeat
  17306. end mouseDown
  17307. HTAIL
  17308. 3INFO
  17309. puptest downEXTI
  17310. """Mooo
  17311. """Mooo
  17312. HOHaH
  17313. *z..f
  17314. H1**11
  17315. HOHa.
  17316. OL111
  17317. 1}OHOHOHz
  17318. HOHOHOHO
  17319. 11LKH1
  17320. 111LOHO
  17321. HOHOHO
  17322. }K110
  17323. 1}OHz11
  17324. 1}OHOHa
  17325. }K110
  17326. a.OHO}1
  17327. 11OHa..
  17328. a..HL
  17329. *11**
  17330. +*'<<<
  17331. .INFO
  17332. Top Dogs DownEXTI
  17333. """Mooo
  17334. """Mooo
  17335. LL<<<<
  17336. <<<<<<<<
  17337. <<<<<<<<
  17338. <<<L<<<
  17339. """Mooo
  17340. .a./.
  17341. """Moo
  17342. ,INFO
  17343. Print DownEXTI
  17344. """Mooo
  17345. """Mooo
  17346. """Mooo
  17347. 1TAIL
  17348.  INFO
  17349. Help UpEXTI
  17350. bbbbb
  17351. bbbbb
  17352. bbbbbbbbb
  17353. xxxbb
  17354. *INFO
  17355.     Help DownEXTI
  17356. """Mooo
  17357. """Mooo
  17358. """Mooo
  17359. MMMMMMMMMMM
  17360. HelpSCRP
  17361. on mouseUp
  17362.   global myBusy, currentState
  17363.   set cursor to myBusy
  17364.   show bg bitmap "Help Up"
  17365.   hide bg bitmap "Help down"
  17366.   if the platform is "Windows" then
  17367.     send kludgeHide to bg movie "Little Movie"
  17368.     send kludgeHIde to bg movie "Slide Show"
  17369.   end if
  17370.   lock screen
  17371.   push this card
  17372.   if currentState is 2 then
  17373.     go card "Comparison Help"
  17374.   else 
  17375.     go card "Help Card"
  17376.   end if
  17377.   unlock screen with visual effect scroll down in 30 ticks
  17378.   set cursor to Browse
  17379. end mouseUp
  17380. on mouseDown
  17381.   show bg bitmap "Help down"
  17382.   hide bg bitmap "Help Up"
  17383.   repeat until the mouse is up
  17384.     if the mouseloc is within the rectangle of me then
  17385.       show bg bitmap "Help down"
  17386.       hide bg bitmap "Help Up"
  17387.     else
  17388.       show bg bitmap "Help Up"
  17389.       hide bg bitmap "Help down"
  17390.     end if
  17391.   end repeat
  17392. end mouseDown
  17393. +INFO
  17394.     Quit DownEXTI
  17395. """Mooo
  17396. """Mooo
  17397. """Mooo
  17398. DDWIWI
  17399. $INFO
  17400. Quit UpEXTI
  17401. bbbbb
  17402. DDWIWI
  17403. fffffV
  17404. QuitSCRP
  17405. on mouseUp
  17406.   set cursor to watch
  17407.   show bg bitmap "Quit Up"
  17408.   hide bg bitmap "Quit Down"
  17409.   lock screen
  17410.   send quit to stack
  17411. end mouseUp
  17412. on mouseDown
  17413.   show bg bitmap "Quit Down"
  17414.   hide bg bitmap "Quit Up"
  17415.   repeat until the mouse is up
  17416.     if the mouseloc is within the rectangle of me then
  17417.       show bg bitmap "Quit Down"
  17418.       hide bg bitmap "Quit Up"
  17419.     else
  17420.       show bg bitmap "Quit Up"
  17421.       hide bg bitmap "Quit Down"
  17422.     end if
  17423.   end repeat
  17424. end mouseDown
  17425. CreditsSCRP
  17426. on mouseUp
  17427.   global myBusy
  17428.   if the short name of this card is not "Main Card-6" then
  17429.     set cursor to myBusy
  17430.     send stateChange && 6 to this background
  17431.   end if
  17432. end mouseUp
  17433.     Book ListSCRP
  17434. on mouseUp
  17435.   global myBusy
  17436.   if the short name of this card is not "Main Card-5" then
  17437.     set cursor to myBusy
  17438.     send stateChange && 5 to this background
  17439.   end if
  17440. end mouseUp
  17441. IndexSCRP
  17442. on mouseUp
  17443.   global myBusy
  17444.   if the short name of this card is not "Main Card-4" then
  17445.     set cursor to myBusy
  17446.     send stateChange && 4 to this background
  17447.   end if
  17448. end mouseUp
  17449. tTAIL
  17450. ArticlesSCRP
  17451. on mouseUp
  17452.   global myBusy
  17453.   if the short name of this card is not "Main Card-3" then
  17454.     set cursor to myBusy
  17455.     send stateChange && 3 to this background
  17456.   end if
  17457. end mouseUp
  17458. Top DogsSCRP
  17459. on mouseUp
  17460.   global myBusy
  17461.   if the short name of this card is not "Main Card-2" then
  17462.     set cursor to myBusy
  17463.     send stateChange && 2 to this background
  17464.   end if
  17465. end mouseUp
  17466. BreedsSCRP
  17467. on mouseUp
  17468.   global myBusy
  17469.   if the short name of this card is not "Main Card-1" then
  17470.     set cursor to myBusy
  17471.     send stateChange && 1 to this background
  17472.   end if
  17473. end mouseUp
  17474. xTAIL
  17475. /INFO
  17476. Print GreyedEXTI
  17477. JJJJJJ
  17478. xxJJJxJ
  17479. 2JJJJ
  17480. JJJJJ
  17481. xxxJJ
  17482. xxxJx+
  17483. xx2JJ2
  17484. JJJf555
  17485. Jxxxx
  17486. xxxxx
  17487. 2xxxx
  17488. 2J2JJJJJ2J
  17489. JJ2xxxxxxxxJ
  17490. 5M5M5M555M5
  17491. xxxxJ2Jxx
  17492. Jxx2Jxxx
  17493. Jx2JJJJ2x2
  17494. JJxxxxxxJ
  17495. xxxxxxJ2xJ
  17496. xxxxxx
  17497. 22Jxxxx
  17498. SSff55
  17499. 1TAIL
  17500. Little Movie BottomEXTI
  17501. 1)^u]]
  17502. 1111111111111111
  17503. 11111
  17504. 1111111
  17505. 11111
  17506. f2JJDx
  17507. xSJJ2
  17508. Slide Show bottomEXTI
  17509. fM]]m^)1
  17510. fM]]u^11
  17511. >^ulJ2
  17512. f2JJSx
  17513. Dog CaptionSCRP
  17514. on showYourself
  17515.   global filePath, curFileDog, capDirSuffix, textExt, curDirPrefix, textFileType
  17516.   global myBusy, busyMax
  17517.   show me
  17518.   if me is empty then  
  17519.     put filePath & curDirPrefix & capDirSuffix into thePath
  17520.     put curFileDog & textExt into theFile
  17521.     if fileExists(thePath, theFile, textFileType) then
  17522.       put thePath & theFile into dogFile
  17523.     else
  17524.       put "I can't find the file" && thePath & theFile into me
  17525.       exit showYourself
  17526.     end if
  17527.     open file dogFile
  17528.     repeat with idx=1 to 500
  17529.       --put idx
  17530.       set cursor to (idx mod busyMax) + myBusy
  17531.       read from file dogFile until return
  17532.       if the result is not empty then exit repeat
  17533.       put it into line idx of me
  17534.     end repeat
  17535.     close file dogFile 
  17536.   end if
  17537. end showYourself
  17538. iTAIL
  17539. Dogs:TGD:ART_MOV:actiagil.mov.movgil.movl.mov
  17540. Little MovieSCRP
  17541. --------------------------------------
  17542. on mouseUp
  17543.   global myBusy
  17544.   set cursor to myBusy
  17545.   if the platform is "Windows" then
  17546.     send kludgeHide to me
  17547.   end if
  17548.   lock screen
  17549.   push this card
  17550.   go card "Movie Bar Help"
  17551.   unlock screen with visual effect scroll down fast
  17552.   set cursor to Browse
  17553. end mouseUp
  17554. --------------------------------------
  17555. on showYourself
  17556.   global filePath, curFileDog, curDirPrefix, movieExt, movieDirSuffix, movieFileType
  17557.   show me
  17558.   --set the myVisible of me to true
  17559.   show bg bitmap "Little Movie Bottom"
  17560.   put filePath & curDirPrefix & movieDirSuffix into thePath
  17561.   put curFileDog & movieExt into theFile
  17562.   if fileExists(thePath, theFile, movieFileType) then
  17563.     set the moviefile of me to thePath & theFile
  17564.     prepare me
  17565.     seek me to 0
  17566.   else
  17567.     set the moviefile of me to empty
  17568.   end if
  17569. end showYourself
  17570. --------------------------------------
  17571. on maybeShowYourself
  17572.   -- Called by openBackground.
  17573.   if the visible of me is true then 
  17574.     set the style of me to control
  17575.     if the moviefile of me is not empty then 
  17576.       prepare me
  17577.       seek me to 0
  17578.     end if
  17579.   end if
  17580. end maybeShowYourself
  17581. --------------------------------------
  17582. on hideYourself
  17583.   if the isPlaying of me is true then stop me
  17584.   hide me
  17585.   --set the myVisible of me to false
  17586.   hide bg bitmap "Little Movie Bottom"
  17587. end hideYourself
  17588. --------------------------------------
  17589. on stopYourself
  17590.   -- Called by stateChange and the picklists.
  17591.   pause me
  17592. end stopYourself
  17593. --------------------------------------
  17594. on kludgeHide
  17595.   -- Called by the "Help" and "Find Top Dogs" buttons.
  17596.   -- This is only needed to get around a Windows bug.
  17597.   if the visible of me is true then
  17598.     pause me
  17599.     set the style of me to transparent
  17600.   end if
  17601. end kludgeHide
  17602.     myvisible
  17603. falseEXTI
  17604. iTAIL
  17605. Dogs:TGD:CRED_SLD:producti.movmovvla.movv.mov
  17606. Slide ShowSCRP
  17607. --------------------------------------
  17608. on mouseUp
  17609.   global myBusy
  17610.   pause me
  17611.   set cursor to myBusy
  17612.   if the platform is "Windows" then
  17613.     send kludgeHide to me
  17614.   end if
  17615.   lock screen
  17616.   push this card
  17617.   go card "Movie Bar Help"
  17618.   unlock screen with visual effect scroll down fast
  17619.   set cursor to Browse
  17620. end mouseUp
  17621. --------------------------------------
  17622. on showYourself
  17623.   global filePath, curFileDog, slideDirSuffix, movieExt, curDirPrefix
  17624.   global movieFileType, desiredVolume
  17625.   show me
  17626.   --set the myVisible of me to true
  17627.   show bg bitmap "Slide Show bottom"
  17628.   put filePath & curDirPrefix & slideDirSuffix into thePath
  17629.   put curFileDog & movieExt into theFile
  17630.   if fileExists(thePath, theFile, movieFileType) then
  17631.     set the moviefile of me to thePath & theFile
  17632.     prepare me
  17633.     seek me to 0
  17634.     --set the playVolume of me to desiredVolume
  17635.   else
  17636.     set the moviefile of me to empty
  17637.   end if
  17638. end showYourself
  17639. --------------------------------------
  17640. on maybeShowYourself
  17641.   -- Called by openBackground.
  17642.   if the visible of me is true then 
  17643.     set the style of me to control
  17644.     if the moviefile of me is not empty then 
  17645.       prepare me
  17646.       seek me to 0
  17647.     end if
  17648.   end if
  17649. end maybeShowYourself
  17650. --------------------------------------
  17651. on hideYourself
  17652.   if the isPlaying of me is true then stop me
  17653.   hide me
  17654.   --set the myVisible of me to false
  17655.   hide bg bitmap "Slide Show bottom"
  17656. end hideYourself
  17657. --------------------------------------
  17658. on stopYourself
  17659.   -- Called by stateChange and the picklists.
  17660.   pause me
  17661. end stopYourself
  17662. --------------------------------------
  17663. on kludgeHide
  17664.   -- Called by the "Help" and "Find Top Dogs" buttons.
  17665.   -- This is only needed to get around a Windows bug.
  17666.   if the visible of me is true then
  17667.     pause me
  17668.     set the style of me to transparent
  17669.   end if
  17670. end kludgeHide
  17671. --on playStopped
  17672.   --global desiredVolume
  17673.   --put the playVolume of me into desiredVolume
  17674. --end playStopped
  17675.     myvisible
  17676. falseEXTI
  17677. hTAIL
  17678. er hNAME
  17679. Dog InfoSCRP
  17680. on showYourself
  17681.   global filePath, curFileDog, textDirSuffix, textExt, curDirPrefix, textFileType
  17682.   global myBusy, busyMax, currentState, idxSearchWord
  17683.   show me
  17684.   if me is empty then
  17685.     set cursor to myBusy
  17686.     put empty into holder    
  17687.     put filePath & curDirPrefix & textDirSuffix into thePath
  17688.     put curFileDog & textExt into theFile
  17689.     if fileExists(thePath, theFile, textFileType) then
  17690.       put thePath & theFile into dogFile
  17691.     else
  17692.       put "I can't find the file" && thePath & theFile into me
  17693.       exit showYourself
  17694.     end if
  17695.     if char 1 of dogFile = "." then
  17696.       put "wierdness:" && dogFile into me
  17697.       exit showYourself
  17698.     end if
  17699.     -- Read the file into a temporary buffer
  17700.     open file dogFile
  17701.     put 0 into idx
  17702.     repeat forever
  17703.       add 1 to idx
  17704.       set cursor to (idx mod busyMax) + myBusy
  17705.       read from file dogFile until return
  17706.       if the result is not empty then exit repeat
  17707.       put it into lyne
  17708.       
  17709.       put lyne after holder
  17710.     end repeat
  17711.     if holder is empty then
  17712.       put "holder is empty, dogFile is" && dogFile & return into me
  17713.     else
  17714.       put holder into me
  17715.     end if
  17716.     set the textFont of me to Helvetica
  17717.     set the textSize of me to 12
  17718.     close file dogFile
  17719.     -- Find any special formatting instructions
  17720.     add 1 to idx
  17721.     set cursor to (idx mod busyMax) + myBusy
  17722.     repeat forever        
  17723.       put offset("<b>", me) into boffset
  17724.       if boffset = 0 then
  17725.         exit repeat
  17726.       else
  17727.         delete char boffset to boffset+2 of me
  17728.         put offset("</>", me) into eoffset
  17729.         delete char eoffset to eoffset+2 of me
  17730.         set the textStyle of char boffset to eoffset-1 of me to bold
  17731.         set the textColor of char boffset to eoffset-1 of me to 6 --201      
  17732.       end if
  17733.     end repeat
  17734.     add 1 to idx
  17735.     set cursor to (idx mod busyMax) + myBusy
  17736.     repeat forever        
  17737.       put offset("<C>", me) into boffset
  17738.       if boffset = 0 then
  17739.         exit repeat
  17740.       else
  17741.         delete char boffset to boffset+2 of me
  17742.         put offset("</C>", me) into eoffset
  17743.         delete char eoffset to eoffset+3 of me
  17744.         set the textColor of char boffset to eoffset-1 of me to 1 --143      
  17745.       end if
  17746.     end repeat
  17747.     add 1 to idx
  17748.     set cursor to (idx mod busyMax) + myBusy
  17749.     repeat forever        
  17750.       put offset("<I>", me) into boffset
  17751.       if boffset = 0 then
  17752.         exit repeat
  17753.       else
  17754.         delete char boffset to boffset+2 of me
  17755.         put offset("</I>", me) into eoffset
  17756.         delete char eoffset to eoffset+3 of me
  17757.         set the textStyle of char boffset to eoffset-1 of me to underline      
  17758.       end if
  17759.     end repeat
  17760.     if currentState is 4 then
  17761.       put the number of chars in idxSearchWord into numchars
  17762.       put offset(idxSearchWord, me) into boffset
  17763.       if boffset > 0 then
  17764.         select char boffset to boffset+numchars-1 of me
  17765.       end if
  17766.     end if
  17767.   end if
  17768. end showYourself
  17769. ----------------------
  17770. -- The above method is simplier and, I think, not significantly slower.
  17771. -- It also has the advantage that multiple, different directives in one
  17772. -- line won't cause the offsets to be off.
  17773. -- But I'll leave this here for documentation purposes.
  17774. on oldshowYourself
  17775.   global filePath, curFileDog, textDirSuffix, textExt, curDirPrefix, textFileType
  17776.   global myBusy, busyMax
  17777.   show me
  17778.   if me is empty then
  17779.     set cursor to myBusy
  17780.     --set the multifont of me to false      -- Kludge to get around an OMO bug
  17781.     --set the multifont of me to true
  17782.     put empty into holder    
  17783.     put empty into bolders
  17784.     put empty into italicers
  17785.     put empty into headers
  17786.     put filePath & curDirPrefix & textDirSuffix into thePath
  17787.     put curFileDog & textExt into theFile
  17788.     if fileExists(thePath, theFile, textFileType) then
  17789.       put thePath & theFile into dogFile
  17790.     else
  17791.       put "I can't find the file" && thePath & theFile into me
  17792.       exit showYourself
  17793.     end if
  17794.     if char 1 of dogFile = "." then
  17795.       put "wierdness:" && dogFile into me
  17796.       exit showYourself
  17797.     end if
  17798.     open file dogFile
  17799.     put 0 into idx
  17800.     repeat forever
  17801.       add 1 to idx
  17802.       --put idx
  17803.       set cursor to (idx mod busyMax) + myBusy
  17804.       read from file dogFile until return
  17805.       if the result is not empty then exit repeat
  17806.       put it into lyne
  17807.       
  17808.       put 1 into boffset
  17809.       repeat while boffset is not 0        
  17810.         put offset("<b>", lyne) into boffset
  17811.         if boffset > 0 then
  17812.           delete char boffset to boffset+2 of lyne
  17813.           put offset("</>", lyne) into eoffset
  17814.           delete char eoffset to eoffset+2 of lyne
  17815.           put boffset & "," & eoffset-1 & "," & idx & return after bolders
  17816.         end if
  17817.       end repeat
  17818.       
  17819.       put 1 into boffset
  17820.       repeat while boffset is not 0        
  17821.         put offset("<I>", lyne) into boffset
  17822.         if boffset > 0 then
  17823.           delete char boffset to boffset+2 of lyne
  17824.           put offset("</I>", lyne) into eoffset
  17825.           delete char eoffset to eoffset+3 of lyne
  17826.           put boffset & "," & eoffset-1 & "," & idx & return after italicers
  17827.         end if
  17828.       end repeat
  17829.       
  17830.       put 1 into boffset
  17831.       repeat while boffset is not 0        
  17832.         put offset("<C>", lyne) into boffset
  17833.         if boffset > 0 then
  17834.           delete char boffset to boffset+2 of lyne
  17835.           put offset("</C>", lyne) into eoffset
  17836.           delete char eoffset to eoffset+3 of lyne
  17837.           put boffset & "," & eoffset-1 & "," & idx & return after headers
  17838.         end if
  17839.       end repeat
  17840.       
  17841.       put lyne after holder
  17842.     end repeat
  17843.     if holder is empty then
  17844.       put "holder is empty, dogFile is" && dogFile & return into me
  17845.     else
  17846.       put holder into me
  17847.     end if
  17848.     set the textFont of me to Helvetica
  17849.     set the textSize of me to 12
  17850.     close file dogFile
  17851.     repeat with idx=1 to the number of lines in bolders
  17852.       set cursor to (idx mod busyMax) + myBusy
  17853.       put line idx of bolders into tempLine
  17854.       set the textStyle of char (item 1 of tempLine) to 
  17855.       (item 2 of tempLine) of line (item 3 of tempLine) of me to bold
  17856.       set the textColor of char (item 1 of tempLine) to 
  17857.       (item 2 of tempLine) of line (item 3 of tempLine) of me to 201
  17858.     end repeat
  17859.     repeat with idx=1 to the number of lines in italicers
  17860.       set cursor to (idx mod busyMax) + myBusy
  17861.       put line idx of italicers into tempLine
  17862.       set the textStyle of char (item 1 of tempLine) to 
  17863.       (item 2 of tempLine) of line (item 3 of tempLine) of me to underline
  17864.     end repeat
  17865.     repeat with idx=1 to the number of lines in headers
  17866.       set cursor to (idx mod busyMax) + myBusy
  17867.       put line idx of headers into tempLine
  17868.       set the textColor of char (item 1 of tempLine) to 
  17869.       (item 2 of tempLine) of line (item 3 of tempLine) of me to 143
  17870.     end repeat
  17871.   end if
  17872. end oldshowYourself
  17873. ldata
  17874. AFFENPINSCHER  (AKC Toy Group)  
  17875. Height:  up to 11 1/2 inches.  
  17876. Weight:  3 to 8 pounds.
  17877. Size: Very Small.
  17878. Availability:  Very difficult to find.
  17879. History:  Named "Monkey dog", because of his monkey-like facial structure and expression, this feisty toy dog originated in Germany. At first a farm dog and ratter, probably larger in size, the Affenpinscher was miniaturized and became a house pet during the 18th and 19th centuries. Today the Affenpinscher is primarily a companion dog. 
  17880. Description:  A small dog with a harsh, shaggy coat, and longer hair all over the face. The Affenpinscher is square-bodied, with a deep chest and round head with a pronounced stop. The lower jaw is undershot, protruding below the dog's short nose. The black eyes are prominent and rounded. The hairy ears are pointed and erect. The coat is usually black or dark gray, but tan and red are also acceptable. The preferred height is around 10-1/4 inches. 
  17881. Notes:  Sensitive to temperature extremes. Overly warm living conditions are detrimental to the coat. Not recommended for younger children. Most are accepting of other pets in the family, especially when raised with them. Tends to guard food and toys. Some bloodlines are prone to fractures and slipped stifle. Like any short-nosed breed, the Affenpinscher may suffer from respiratory problems in hot weather. This breed likes to hike and go camping as long as the temperature stays above 20 degrees F. May challenge large dogs and other large animals unwisely. 
  17882. Personality:  Terrier-like personality. Fiery little dog, courageous and confident--a fearless defender. Very affectionate and amusing. Playful. Enjoys being with his family. Needs consistent, firm training. Some are difficult to housebreak. 
  17883. Behavior:
  17884. Children:  Not recommended for children.
  17885. Friendliness:  Loves everyone.
  17886. Trainability:  Slightly difficult to train.
  17887. Independence:  Moderately dependent on people.
  17888. Dominance:  Moderate.
  17889. Other Pets:  Generally good with other pets.
  17890. Combativeness:  Can be a bit dog-aggressive.
  17891. Noise:  Likes to bark.
  17892. Grooming and Physical Needs:
  17893. Grooming:  Regular grooming needed.
  17894. Trimming & Stripping:  No trimming or stripping needed.
  17895. Coat:  Medium coat.
  17896. Shedding:  Very light.
  17897. Docking:  Both ears and tail are customarily docked.
  17898. Exercise:  Very little exercise needed.
  17899. Jogging:  A fair jogging companion.
  17900. Indoors:  Very active indoors.
  17901. Apartments:  Good for apartment living.
  17902. Outdoor Space:  Does all right without a yard.
  17903. Climate:  Prefers cool climates.
  17904. Owner:  Good for novice owners.
  17905. Longevity:  Average (10 to 12 years).
  17906. Talents:  watchdog, agility, and performing tricks.
  17907. For More Information:
  17908. Call the AKC Breeder Referral Hotline: 1-900-407-PUPS for the name of a breeder referral representative in your area. Cost is 99 cents per minute. 
  17909. Photo Caption:  AFFENPINSCHER 
  17910. Photo copyright: Cook PhoDOGraphy 1995. All rights reserved. 
  17911. 0INFO
  17912. Big PictureSCRP
  17913. on showYourself
  17914.   global filePath, curFileDog, pictDirSuffix, pictExt, curDirPrefix
  17915.   global pictFileType, dataDir, myBusy
  17916.   show me
  17917.   if me is empty then
  17918.     set cursor to myBusy
  17919.     put filePath & curDirPrefix & pictDirSuffix into thePath
  17920.     put curFileDog & pictExt into theFile
  17921.     if fileExists(thePath, theFile, pictFileType) then
  17922.       import thePath & theFile into me
  17923.     else
  17924.       import filePath & dataDir & "nofile.pic" into me
  17925.     end if
  17926.   end if
  17927. end showYourself
  17928. adata
  17929. DescriptionSCRP
  17930. --------------------------------------
  17931. on hiliteYourself
  17932.   show bg bitmap id 22 -- "down"
  17933.   hide bg bitmap id 23 -- "up"
  17934.   set the myhilite of me to true
  17935. end hiliteYourself
  17936. --------------------------------------
  17937. on unhiliteYourself
  17938.   show bg bitmap id 23 -- "up"
  17939.   hide bg bitmap id 22 -- "down"
  17940.   set the myhilite of me to false
  17941. end unhiliteYourself
  17942. --------------------------------------
  17943. on showYourself
  17944.   show me 
  17945.   if the myhilite of me is true then
  17946.     show bg bitmap id 22 -- "down"
  17947.   else
  17948.     show bg bitmap id 23 -- "up"
  17949.   end if
  17950. end showYourself
  17951. --------------------------------------
  17952. on hideYourself
  17953.   hide me
  17954.   hide bg bitmap id 22 -- "down"
  17955.   hide bg bitmap id 23 -- "up"
  17956. end hideYourself
  17957. --------------------------------------
  17958. on mouseUp
  17959.   global currentMode, myBusy
  17960.   if the myhilite of me is false then
  17961.     -- mouseDown has down the hiliting
  17962.     set cursor to myBusy
  17963.     set the myhilite of me to true
  17964.     if currentMode=2 then
  17965.       send unhiliteYourself to bg button id 10    -- "Picture"
  17966.     else if currentMode=3 then
  17967.       send unhiliteYourself to card button id 2   -- "Comparisons"
  17968.     end if
  17969.     send modeChange && 1 to this background
  17970.   end if
  17971. end mouseUp
  17972. --------------------------------------
  17973. on mouseDown
  17974.   if the myhilite of me is false then
  17975.     show bg bitmap id 22 -- "Text down"
  17976.     hide bg bitmap id 23 -- "Text up"
  17977.     repeat until the mouse is up
  17978.       if the mouseloc is within the rectangle of me then
  17979.         show bg bitmap id 22 -- "Text down"
  17980.         hide bg bitmap id 23 -- "Text up"
  17981.       else
  17982.         show bg bitmap id 23 -- "Text up"
  17983.         hide bg bitmap id 22 -- "Text down"
  17984.       end if
  17985.     end repeat
  17986.   end if
  17987. end mouseDown
  17988. myhilite
  17989. trueEXTI
  17990. tTAIL
  17991. Find Top DogsSCRP
  17992. on mouseUp
  17993.   global myBusy
  17994.   set cursor to myBusy
  17995.   show bg bitmap "Top Dogs Up"
  17996.   hide bg bitmap "Top Dogs down"
  17997.   if the platform is "Windows" then
  17998.     send kludgeHide to bg movie "Little Movie"
  17999.     send kludgeHIde to bg movie "Slide Show"
  18000.   end if
  18001.   lock screen
  18002.   go card id 6
  18003.   unlock screen with visual effect scroll left in 30 ticks
  18004.   set cursor to Browse
  18005. end mouseUp
  18006. on mouseDown
  18007.   show bg bitmap "Top Dogs down"
  18008.   hide bg bitmap "Top Dogs Up"
  18009.   repeat until the mouse is up
  18010.     if the mouseloc is within the rectangle of me then
  18011.       show bg bitmap "Top Dogs down"
  18012.       hide bg bitmap "Top Dogs Up"
  18013.     else
  18014.       show bg bitmap "Top Dogs Up"
  18015.       hide bg bitmap "Top Dogs down"
  18016.     end if
  18017.   end repeat
  18018. end mouseDown
  18019.  TAIL
  18020. PrintSCRP
  18021. on mouseUp
  18022.   global currentState, currentMode, filePath, textDirSuffix, curFileDog
  18023.   global textExt, curDirPrefix, myBusy
  18024.   show bg bitmap "Print Up"
  18025.   hide bg bitmap "Print Down"
  18026.   -- Pathological insurance.
  18027.   send stopYourself to bg movie "Little Movie"
  18028.   send stopYourself to bg movie "Slide Show"
  18029.   put 0 into whatToPrint
  18030.   if currentState is 2 then
  18031.     if the optionKey is "down" then
  18032.       put 2 into whatToPrint
  18033.     else
  18034.       if the visible of card datasheet "Comparison Table" is true then
  18035.         put 1 into whatToPrint
  18036.       end if
  18037.     end if
  18038.   end if
  18039.   if whatToPrint = 1 then                  -- Print the Comparison Table.
  18040.     if the platform is "Macintosh" then
  18041.       set cursor to CommandDot1
  18042.     else
  18043.       set cursor to watch
  18044.     end if
  18045.     put card datasheet "Comparison Table" of this card into 
  18046.      card datasheet "Comparison Table" of card "Comp Table print"
  18047.     repeat with idx=3 to 6
  18048.       set name of column idx of 
  18049. card datasheet "Comparison Table" of card "Comp Table print" to 
  18050. name of column idx of card datasheet "Comparison Table" of this card
  18051.     end repeat
  18052.     put card picklist "Match List" of this card into 
  18053.      card picklist "Match List" of card "Match List Print"
  18054.     unhilite card picklist "Match List" of card "Match List Print"
  18055.     push this card
  18056.     lock screen
  18057.     if the platform is "Macintosh" then open printing
  18058.     print card "Comp Table print"
  18059.     print card "Match List Print"
  18060.     if the platform is "Macintosh" then close printing
  18061.     pop card
  18062.   else if whatToPrint = 2 then              -- Print the special selector check.
  18063.     set cursor to CommandDot1
  18064.     put card datasheet "Comparison Table" of this card into 
  18065.      card datasheet "Comparison Table" of card "Selector Check"
  18066.     put card picklist "Match List" of this card into 
  18067.      card picklist "Match List" of card "Selector Check"
  18068.     unhilite card picklist "Match List" of card "Selector Check"
  18069.     push this card
  18070.     lock screen
  18071.     print card "Selector Check"
  18072.     pop card
  18073.     -- Print the dog Info field.
  18074.   else                                     
  18075.     put filePath & curDirPrefix & textDirSuffix & curFileDog & textExt into dogFile
  18076.     PrintAFile dogFile
  18077.   end if
  18078.   set cursor to Browse
  18079. end mouseUp
  18080. on mouseDown
  18081.   show bg bitmap "Print Down"
  18082.   hide bg bitmap "Print Up"
  18083.   repeat until the mouse is up
  18084.     if the mouseloc is within the rectangle of me then
  18085.       show bg bitmap "Print Down"
  18086.       hide bg bitmap "Print Up"
  18087.     else
  18088.       show bg bitmap "Print Up"
  18089.       hide bg bitmap "Print Down"
  18090.     end if
  18091.   end repeat
  18092. end mouseDown
  18093. XTAIL
  18094. DINFO
  18095. Little PictureSCRP
  18096. on showYourself
  18097.   global filePath, curFileDog, pictExt, curDirPrefix, thumbDirSuffix
  18098.   global pictFileType, dataDir, myBusy
  18099.   show me
  18100.   if me is empty then
  18101.     set cursor to myBusy
  18102.     put filePath & curDirPrefix & thumbDirSuffix into thePath
  18103.     put curFileDog & pictExt into theFile
  18104.     if fileExists(thePath, theFile, pictFileType) then
  18105.       import thePath & theFile into me
  18106.     else
  18107.       import filePath & dataDir & "nofile.pic" into me
  18108.     end if
  18109.   end if
  18110. end showYourself
  18111. {data
  18112. 1b'hn
  18113. Al= yI
  18114. ^%z*(
  18115. #x8h+*;
  18116. |L/:U
  18117.  "8@9
  18118. F2_*q
  18119. `-fgqj+
  18120. glo|La
  18121. +`+`;
  18122. GVK .O
  18123. 8h+tj.3
  18124. -k+*NS
  18125. RF|Lm`
  18126. :V[w`
  18127. 'ByIfgA
  18128. `$m+/
  18129. S~:    m
  18130. yI .3
  18131. A)8h3
  18132. #x;`NS
  18133. #x;Fm+t
  18134. `d+*3
  18135. #D'h^
  18136. +*+*3
  18137. bEB'B
  18138. >/:#xu
  18139. GE &!"
  18140. j.>    ^
  18141. >Vm;Fy
  18142. |LV'3
  18143. =K^'h
  18144. 'h'h;J,l'h
  18145. ;F;FuC
  18146. ;F#2/:;
  18147. N'hm+Mi
  18148. m+8J3
  18149. +*+*'h
  18150. yIm+lEt
  18151. bXD#x
  18152. yIMMJ
  18153. Mg'h;F3
  18154. lE8`y
  18155. h8B;F
  18156. vO,GA)^
  18157. ;F+*3
  18158. qQ_4#x#
  18159. 2j!"Mg
  18160.  &A%B
  18161. m`,G8
  18162. ,EMgr`+*
  18163. Vm+*;
  18164. ;F#>G
  18165. m+fMY
  18166. xbxbxbxbp
  18167. m+Vmt
  18168. +*;F+*3
  18169. !bm`x
  18170. 'h'Bm+Y
  18171. ,fMMF
  18172. %8`8`4
  18173. 'G{jy
  18174. +*8%,
  18175. *?"yIu
  18176. A%MF,
  18177. g#x+*#
  18178. -NMg^
  18179. b "xb
  18180. buC;`3`^
  18181. +*m+,Gh
  18182. /:#x8}.
  18183. ;Jmd#.
  18184. 'h#"3
  18185. ffM &
  18186. {j{th
  18187. AlA%-k
  18188. 2A%yI
  18189. Al'h^
  18190. =z5u    y
  18191. ;F#xa
  18192. 'h+*'h
  18193. )JGWG
  18194. #x B6J
  18195.         E    E
  18196. /:#R8
  18197. R:'5e;F
  18198.  &1D0
  18199. ,    E    E
  18200. OtF1!"
  18201. Mi)J*
  18202. c`-h&s
  18203.     lF1kZR
  18204. *+*+*3
  18205. ,H#"3
  18206. :5#+*
  18207. 4M{C,!8
  18208. 8hXD{j &
  18209. XD8@%
  18210. sn'Bd
  18211. fg_6*7    O
  18212. :($;l/:
  18213. _ "9\8
  18214. !(`kZ
  18215. x( &1D
  18216. Mga&Y
  18217. )J/pZ
  18218. 1R    N ")
  18219. Vm &y
  18220. A%Mgm
  18221. VmA)m+
  18222. (($M'U
  18223. kZkZF
  18224. d "8@
  18225. 9\8@8@0
  18226. GEo{h@
  18227. F1kZkZ
  18228. kZg9)0
  18229. kZkZ-k
  18230.     E    E    E
  18231. MFA*Y
  18232. jUjoJRB*
  18233.     E    E    E
  18234. F1%){
  18235. !',E!"4
  18236.     E    E    E
  18237.     E    o    E
  18238. 8h$" 
  18239.     E    E    E
  18240. A%)JNS
  18241. buCj.z*3
  18242. hGE;F
  18243. #xO^NS
  18244. c)J-k
  18245. !    E-K
  18246. )Jg9S
  18247. F1g9R
  18248. uCm+t
  18249. %'B'h3
  18250. +*'hd
  18251. -k-k-k!
  18252. -k    E0
  18253. c    E    E
  18254. u'g6'"
  18255. =f5~    
  18256. ma;J0
  18257. 8hsn`-
  18258. 'JR`-m
  18259. g9wo%
  18260. ;F;F#
  18261. BJRMF
  18262. ,l4t1
  18263.  "F1r
  18264. ["2j[
  18265.     E)J-k
  18266. >    ,EV
  18267. MFXD3^
  18268. /:8};F8@;Fh
  18269.  &8`H
  18270. O]4t &
  18271. losn`
  18272. xblE!b9
  18273. (O],+
  18274. 8h &(
  18275. !    lkZnU
  18276. FkNs &
  18277. ;F "[H
  18278.  "XDzo>    
  18279. [Hsnp
  18280. )0 "p
  18281. _+*    o9Z
  18282. N &8@P
  18283. XD &O
  18284. c eo{JR
  18285. XDXD|L">
  18286. v8@ ";F
  18287. c-kJR
  18288. xb &0
  18289. c+*#x@
  18290.  & "S
  18291. XD &P
  18292.     E-JNs
  18293. B(`(`
  18294. d{j|L#
  18295. 8@xb | "0
  18296. g({jO
  18297. d    E    E=
  18298. d;F=e[
  18299. NvO9\
  18300. xb8}    
  18301. xbXDs
  18302. dO^8%Y
  18303. [H&vp
  18304. c-kxb
  18305. ABSvg
  18306. 8Flo)
  18307. !O^o{-k
  18308. CP!R!R<
  18309. &U)J>
  18310. )J%)A%
  18311. Goz*Go'h(
  18312. B"xCFp
  18313. f&iXL
  18314. l H .
  18315. c-kFk
  18316. >    >    5
  18317. \77m<
  18318. c)J)J
  18319. @= <`
  18320. E'l!'
  18321. xbx@p
  18322. XLxb .xb
  18323. gc2jXL
  18324. xb7Gxb
  18325. xbxbh
  18326. ?/ "-A
  18327. (O'lo!
  18328. xbxbh
  18329. Fxb`$xbs
  18330. &xb`$xb`$
  18331. Fx8`$h
  18332. xb8dxb+
  18333. xbdy{j
  18334. 8Nxb .`$
  18335. xb`$`$
  18336. xb`<h
  18337. FkFk&OFk>    N
  18338. FkF1Fk&iFk.
  18339. F1FkFkFk6
  18340. F1Fk>    FkFkN
  18341. F1FkFkFk&iFkB
  18342. Fk&O.
  18343. FkFk5
  18344. >    >    6
  18345. >    Fk.
  18346. Fk&i=
  18347. FkFk.
  18348. F1Fk&i>    >    .
  18349. F1Fk>    &i>    Fk&O&igSw
  18350. Fk&O5
  18351. Fk&i>    &OFkFk&ON
  18352. Fk>    N
  18353. FkFkB
  18354. F1Fk&OF1Fk6
  18355. FkFkF1>    .
  18356. FkF1FkF1V
  18357. Fk&OFkB
  18358. FkF1N
  18359. FkFkB
  18360. 1R1Rx~p
  18361. `$x@x8
  18362. Big PictureSCRP
  18363. on hiliteYourself
  18364.   show bg bitmap id 25 -- "down"
  18365.   hide bg bitmap id 24 -- "up"
  18366.   set the myhilite of me to true
  18367. end hiliteYourself
  18368. on unhiliteYourself
  18369.   show bg bitmap id 24 -- "up"
  18370.   hide bg bitmap id 25 -- "down"
  18371.   set the myhilite of me to false
  18372. end unhiliteYourself
  18373. on showYourself
  18374.   show me 
  18375.   if the myhilite of me is true then
  18376.     show bg bitmap id 25 -- "down"
  18377.   else
  18378.     show bg bitmap id 24 -- "up"
  18379.   end if
  18380. end showYourself
  18381. on hideYourself
  18382.   hide me 
  18383.   if the myhilite of me is true then
  18384.     hide bg bitmap id 25 -- "down"
  18385.   else
  18386.     hide bg bitmap id 24 -- "up"
  18387.   end if
  18388. end hideYourself
  18389. on mouseUp
  18390.   global currentMode, myBusy
  18391.   if the myhilite of me is false then
  18392.     -- mouseDown has done the hiliting
  18393.     set cursor to myBusy
  18394.     set the myhilite of me to true
  18395.     if currentMode=1 then
  18396.       send unhiliteYourself to bg button id 8       -- "Text"
  18397.     else if currentMode=3 then
  18398.       send unhiliteYourself to card button id 2    -- "Comparisons"
  18399.     end if
  18400.     send modeChange && 2 to this background
  18401.   end if
  18402. end mouseUp
  18403. on mouseDown
  18404.   if the myhilite of me is false then
  18405.     show bg bitmap id 25 -- "Picture down"
  18406.     hide bg bitmap id 24 -- "Picture up"
  18407.     repeat until the mouse is up
  18408.       if the mouseloc is within the rectangle of me then
  18409.         show bg bitmap id 25 -- "Picture down"
  18410.         hide bg bitmap id 24 -- "Picture up"
  18411.       else
  18412.         show bg bitmap id 24 -- "Picture up"
  18413.         hide bg bitmap id 25 -- "Picture down"
  18414.       end if
  18415.     end repeat
  18416.   end if
  18417. end mouseDown
  18418. myhilite
  18419. falseEXTI
  18420. ioowBw
  18421. j\ojj\\
  18422. =/9:>
  18423. 7n..j3
  18424. @n.n7X
  18425. 3s@s3o
  18426. o\\@@
  18427. :BB>5
  18428. -<8><
  18429. oj333jo@
  18430. >=+#&#ij
  18431. 3jsss
  18432. @....
  18433. .>>> 
  18434. ooooo
  18435. BtXXXXX
  18436. 2222.
  18437. Wxxt/
  18438. DCBE.lm
  18439. s\@@E
  18440. ososo
  18441. ojsi3jo
  18442. =>>>>
  18443. @oooso
  18444.  -Y-B-!
  18445. oojjlo
  18446. >=- >>2=
  18447. jsjopmjo
  18448. '?676
  18449. EE/ojjsj
  18450. FEsj@@
  18451. ojjoolqq
  18452. ljoso
  18453. \ojoj
  18454. olqmpj
  18455. @@lp@CBo
  18456. mlmps
  18457. ssoos
  18458. o/llC
  18459. ospso
  18460. 77676
  18461. ooooo
  18462. ooooo
  18463. lpooo
  18464. sojooj
  18465. ojpmm
  18466. oo3os
  18467. ojo\j
  18468. jojoj
  18469. oE@/@
  18470. j\@@@@
  18471. 477*4
  18472. 46677
  18473. \\@\\
  18474. FFF^^
  18475. BCB/j
  18476. oCC^^
  18477. jo/qE@^]^F
  18478. poooo
  18479. \ojjoj
  18480. \3ojoj
  18481. \o\j3
  18482. \\o\j
  18483. ojola
  18484. C@@C^@
  18485. @@C^^
  18486. ^]C^C
  18487. oo*    1
  18488. ooooj(
  18489. 2Jll^&
  18490. 1Ful]2
  18491. 1&^u]J2
  18492. 11111
  18493. 2JJSx
  18494. xVJJ2
  18495. +++7+++
  18496. +++++
  18497. oooooo
  18498. ooooojl
  18499. J2xxxxx
  18500. }xxxx
  18501. xxxxx
  18502. x4xxxL
  18503. xxxxx
  18504. Lx}x4x}xo
  18505. ooooox
  18506. noon@
  18507. jolpo
  18508. oooooo
  18509. jojC@CC
  18510. ooopoe
  18511. oojo@C+
  18512. <<7ppo
  18513. <6=======
  18514. 6<6==7
  18515. ]u^&1
  18516. 1&^l]J2
  18517. 2JJSo
  18518. ,+,+,+,+5
  18519. o@ooo
  18520. oo@oo
  18521. @^E^Co
  18522. jo@Fjj
  18523. ooooo
  18524. ^@C@/
  18525. ojooo
  18526. /@@@//
  18527. @E@@@
  18528. ooolo
  18529. jojoo
  18530. @@@oE]
  18531. @C_C@l//
  18532. ooooo
  18533. o/o@@
  18534. ,ojoj
  18535. oooo/
  18536. oojoo
  18537. oooooo
  18538. oooooo
  18539. ooojo
  18540. o@ooo
  18541. F.@o,/
  18542. jojo,oj
  18543. ooo/o
  18544. ,ojj//jF
  18545. FFE@C
  18546. o@@C/
  18547. ooooo
  18548. o@@C@
  18549. /o@E@
  18550. B@@C@@@
  18551. ooo@,o
  18552. ,oooF@C
  18553. joooo
  18554. @@@,@
  18555. EoC@/
  18556. oj,jo
  18557. ojjo@
  18558. @@@@C
  18559. /@/oj
  18560. @E@@o/
  18561. @CFCoo
  18562.     oooo
  18563. !o/oFEF
  18564. @F@@@]
  18565. oojoo
  18566. @jCoEjCoE
  18567. jojoj,/
  18568. //,C/ojF
  18569. ooooooooo
  18570. @/@@oC@n
  18571. F@q,/@E
  18572. C@@@E@C@.@,/oo
  18573. ooooo
  18574. Cj,@^F
  18575. oo@/Cio
  18576. @@EFE
  18577. jooooo/oo
  18578. oo///,E//C
  18579. @^@@@
  18580. /oEC@o
  18581. qC@@^C/
  18582. @@,EC@C/,
  18583. Cjooo
  18584. ^F/o@
  18585. ,j@/,j/ooo,oo
  18586. j/Fjj@CE,
  18587. @@CE@
  18588. oooo@@,@
  18589. oojooo
  18590. @,j/o
  18591. ojooooo
  18592. @@Co/
  18593. E//oj
  18594. xxxxxx
  18595. xxxxxx
  18596. xxxxxxxx
  18597. xxxxx
  18598. xxxxxx
  18599. +++*+
  18600. ++R+x
  18601. xxxxxx
  18602. RTAIL
  18603.